35 lines
768 B
Vue
35 lines
768 B
Vue
<template>
|
|
<div id="app" class="container">
|
|
<img alt="Vue logo" style="width:100px" src="./assets/logo.png">
|
|
<h2>Pagebuilder Magico</h2>
|
|
<MagicoPagebuilder v-model="data" />
|
|
|
|
<div class="bg-dark text-light mt-4 p-2">{{data}}</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
name: 'App',
|
|
components: {
|
|
|
|
},
|
|
data: function(){
|
|
return {
|
|
data:'[{"label":"1 kolumna ","name":"col_1","columns":[{"name":"col-md-12","items":[{"name":"core_section_textarea","text":""},{"name":"core_section_text","text":""}]}]}]'
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
#app {
|
|
font-family: Avenir, Helvetica, Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
color: #2c3e50;
|
|
margin-top: 60px;
|
|
}
|
|
</style>
|