s6e91 first component
This commit is contained in:
parent
86d251e08a
commit
f0f9acb0eb
@ -1,35 +1,13 @@
|
|||||||
|
Vue.component('ts-cmp',{
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
status: "Critical!",
|
||||||
|
};
|
||||||
|
},
|
||||||
|
template: '<p> Server status {{ status }} </p>'
|
||||||
|
});
|
||||||
|
|
||||||
var app = new Vue({
|
var app = new Vue({
|
||||||
el: '#app',
|
el: '#app',
|
||||||
data: {
|
|
||||||
title: "The VueJS nstance"
|
|
||||||
},
|
|
||||||
beforeCreate(){
|
|
||||||
console.log("Created");
|
|
||||||
},
|
|
||||||
created(){
|
|
||||||
console.log("created");
|
|
||||||
},
|
|
||||||
beforeMount(){
|
|
||||||
console.log("beforeMount");
|
|
||||||
},
|
|
||||||
mounted(){
|
|
||||||
console.log("mounted");
|
|
||||||
},
|
|
||||||
beforeUpdate(){
|
|
||||||
console.log("before update");
|
|
||||||
},
|
|
||||||
updated(){
|
|
||||||
console.log("updated");
|
|
||||||
},
|
|
||||||
beforeDestroy(){
|
|
||||||
console.log("before destroy");
|
|
||||||
},
|
|
||||||
destroyed(){
|
|
||||||
console.log("destroyed");
|
|
||||||
},
|
|
||||||
methods:{
|
|
||||||
destroy(){
|
|
||||||
this.$destroy();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
});
|
||||||
|
@ -7,9 +7,10 @@
|
|||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id='app'>
|
<div id='app'>
|
||||||
{{title}}
|
<ts-cmp></ts-cmp>
|
||||||
<button @click="title = 'changed'">click</button>
|
</div>
|
||||||
<button @click="destroy"> destroy </button>
|
|
||||||
|
<div id='app'>
|
||||||
</div>
|
</div>
|
||||||
<script src="app.js" charset="utf-8"></script>
|
<script src="app.js" charset="utf-8"></script>
|
||||||
</body>
|
</body>
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
|
|
||||||
<script>
|
<script>
|
||||||
export default {
|
export default {
|
||||||
|
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user