/**
* 生命周期函数--监听页面加载
*/
onLoad: function () {
this.methods.test();
},
methods:{
test(){
console.log('test')
}
}
微信小程序onload调用method中的方法
最新推荐文章于 2025-03-25 21:45:02 发布
/**
* 生命周期函数--监听页面加载
*/
onLoad: function () {
this.methods.test();
},
methods:{
test(){
console.log('test')
}
}