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({
|
||||
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>
|
||||
<body>
|
||||
<div id='app'>
|
||||
{{title}}
|
||||
<button @click="title = 'changed'">click</button>
|
||||
<button @click="destroy"> destroy </button>
|
||||
<ts-cmp></ts-cmp>
|
||||
</div>
|
||||
|
||||
<div id='app'>
|
||||
</div>
|
||||
<script src="app.js" charset="utf-8"></script>
|
||||
</body>
|
||||
|
@ -6,6 +6,7 @@
|
||||
|
||||
<script>
|
||||
export default {
|
||||
|
||||
}
|
||||
</script>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user