For example, if a method is defined in a component:
export default { methods: { changeIcon () {} } }
How to make the changeIcon function execute automatically?
认证高级PHP讲师
export default { //这里可以用created或mounted mounted() { this.changeIcon() }, methods: { changeIcon () {} } }
Just call it once in the vue life cycle beforeCreate or Create! Attached is also a vue life cycle example.
Just call it once in the vue life cycle beforeCreate or Create!
Attached is also a vue life cycle example.