当前位置 : 主页 > 网络编程 > PHP >

Vue官方文档(34):混入,组件本身的属性优先级高于混入

来源:互联网 收集:自由互联 发布时间:2023-09-07
template div {{message}} /div /template script //import Vue from 'vue' var mixin = { data: function () { return { message: 'hello', foo: 'abc' } } } export default{ mixins: [mixin] , components: { }, data() { return { message: 'goodby', bar


<template>
<div >
{{message}}

</div>
</template>


<script>

//import Vue from 'vue'

var mixin = {
data: function () {
return {
message: 'hello',
foo: 'abc'
}
}
}


export default{
mixins: [mixin]
,
components: {

},
data() {
return {
message: 'goodby',
bar: 'def'
}
},
methods:{

},
created(){
console.log(JSON.stringify(this.$data))
// => { message: "goodbye", foo: "abc", bar: "def" }
},
computed: {

},
watch: {

}
}

</script>

<style >

</style>


【本文由:大丰网站制作 http://www.1234xp.com/dafeng.html 复制请保留原URL】
上一篇:【SpringCloud】实现动态网关路由-Nacos
下一篇:没有了
网友评论