vue app
This commit is contained in:
18
src/App.vue
18
src/App.vue
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user