自定义组件中的生命周期函数attached没有被调用,如下两种方法都没有被调用,期待大神的回复,谢谢!
attached: function() {
console.log("attached...")
},
lifetimes: {
created: function() {
console.log("created...")
},
attached: function() {
// 在组件实例进入页面节点树时执行
console.log("attached...")
},
detached: function() {
// 在组件实例被从页面节点树移除时执行
},
},
2***@qq.com
Vue.component('my-component', {
component: {
lifetimes: {
created: function() {
console.log("created...")
},
attached: function() {
console.log("attached...")
},
detached: function() {
console.log("detached...")
},
}
},
// ...
});
2022-12-29 01:42
1***@qq.com (作者)
我是基于uniapp开发的,直接在components上新建的组件,在自动生成的.vue文件中编写的代码,没有用到Vue.component('my-component', {
这种形式
2022-12-29 11:29