For example, if a method is defined in a component:
export default {
methods: {
changeIcon () {}
}
}
How to make the changeIcon function execute automatically?
ringa_lee2017-05-19 10:43:14
export default {
//这里可以用created或mounted
mounted() {
this.changeIcon()
},
methods: {
changeIcon () {}
}
}
phpcn_u15822017-05-19 10:43:14
Just call it once in the vue life cycle beforeCreate or Create!
Attached is also a vue life cycle example.