This commit is contained in:
2022-06-23 13:59:22 +02:00
parent a769bd9b64
commit 40052aeb9b
13 changed files with 845 additions and 264 deletions

View File

@@ -1,17 +1,25 @@
<template>
<div id="app">
<img alt="Vue logo" src="./assets/logo.png">
<HelloWorld msg="Welcome to Your Vue.js App"/>
<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>
import HelloWorld from './components/HelloWorld.vue'
import MagicoPagebuilder from './components/MagicoPagebuilder.vue'
export default {
name: 'App',
components: {
HelloWorld
MagicoPagebuilder
},
data: function(){
return {
data:''
}
}
}
</script>