08 在Vue3中使用方法

概述

In Vue 2.0, Vue defines component methods inside the methods object as part of a Vue instance. You compose each component method as a normal JavaScript function. The Vue method is scoped to your Vue component and can be run from anywhere inside the component it belongs to. It also has access to the this instance, which indicates the instance of the component:

在 Vue 2.0 中,Vue 在 methods 对象中定义了组件方法,作为 Vue 实例的一部分。你可以将每个组件方法编译成一个普通的 JavaScript 函数。Vue 方法的作用域是您的 Vue 组件,可以在其所属组件的任何位置运行。它还可以访问 this 实例,该实例表示组件的实例:

<script>
export default {
  methods: {
    myMethod() { console.log('my first method'); }
  }
}
script>

From Vue 3.0 onward, with

你可能感兴趣的:(使用Vue3进行前端开发,vue.js,前端,javascript)