• 基本用法

    基本用法

    要让 TypeScript 正确推断 Vue 组件选项中的类型,您需要使用 Vue.componentVue.extend 定义组件:

    1. import Vue from 'vue'
    2. const Component = Vue.extend({
    3. // 类型推断已启用
    4. })
    5. const Component = {
    6. // 这里不会有类型推断,
    7. // 因为TypeScript不能确认这是Vue组件的选项
    8. }