Vue page immediately trigger a function when loading

Foreword

Vue project, the page just loaded when needed would immediately trigger a function of how to achieve that?

achieve

For example, the trigger when the page loads message().

mounted: function(){
	this.message();//需要触发的函数
}
message(){
	//业务逻辑
}
Published 256 original articles · won praise 403 · views 800 000 +

Guess you like

Origin blog.csdn.net/weixin_44198965/article/details/104113092