The life cycle function in the uniapp component does not take effect

       onLoad, onShow these hook functions do not take effect!
Solution:

Called in the mounted hook of vue

mounted() {
			console.log('进来了');
			this.getList()
		},

Guess you like

Origin blog.csdn.net/cwb_2120/article/details/131397300
Recommended