vue2怎么自定义方法在mounted调用
时间: 2023-08-11 14:09:45 浏览: 86
vue mounted 调用两次的完美解决办法
你可以在Vue实例的`methods`对象中定义自定义方法,在`mounted`钩子函数中调用它。例如:
```
<template>
<div>
<button @click="customMethod">点击我</button>
</div>
</template>
<script>
export default {
name: 'MyComponent',
methods: {
customMethod() {
console.log('这是一个自定义方法');
}
},
mounted() {
this.customMethod();
}
}
</script>
```
在上面的代码中,我们定义了一个名为`customMethod`的自定义方法,并在`mounted`钩子函数中调用它。当用户点击按钮时,也可以通过`@click`指令来调用该方法。
阅读全文