2 Star 1 Fork 1

jiangmu/vue解析

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
06provide组件通信.html 2.00 KB
一键复制 编辑 原始数据 按行查看 历史
qq281113270 提交于 2019-03-28 14:24 . Add files via upload
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<script src="vue.js"></script>
</head>
<body>
<div id="components-demo">
<button-counter id="123"></button-counter>
</div>
<div id="app">
{{ message }}
</div>
<script>
// function person (){
// this.options='aaa'
// }
//
// person.constructor={aa:'c'}
// person.prototype.options='span'
//
// console.log(person.constructor.options)
// console.log(Object.create(person.constructor.options));
// new Vue({})
var obj = {
name: 'name',
age: 29
}
var arr = []
var res = new Array(obj.length);
console.log(obj.length)
console.log(res)
console.log(arr.length)
Vue.component('button-counter', {
props:['id'],
functional:true,
inject: ['foo'],
data: function () {
return {
count: 0
}
},
mounted: ()=> { //挂载元素,获取到DOM节点
console.log('==this.foo==')
console.log(this.foo)
},
template: '<button v-on:click="count++">You clicked me {{ count }} times.</button>'
})
new Vue({el: '#components-demo'})
var app = new Vue({
el: '#app',
provide: {
foo: 'bar'
},
beforeCreate(){
},
created(){
},
beforeMount(){
},
mounted: ()=> { //挂载元素,获取到DOM节点
setTimeout(()=>{
this.count=11;
console.log('this.count='+this.count)
},5000)
},
beforeUpdate(){
},
updated(){ //挂载元素,获取到DOM节点
},
beforeDestroy(){
},
destroyed(){
},
data: {
count:0,
message: 'Hello Vue!'
}
})
</script>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/sixlty/vue-parsing.git
[email protected]:sixlty/vue-parsing.git
sixlty
vue-parsing
vue解析
master

搜索帮助