当前位置: 首页>>编程示例 >>用法及示例精选 >>正文


Vue.js app.directive()用法及代码示例

如果同时传递名称字符串和指令定义,则注册全局自定义指令,如果仅传递名称,则检索已注册的指令。

类型

interface App {
  directive(name: string): Directive | undefined
  directive(name: string, directive: Directive): this
}

示例

import { createApp } from 'vue'

const app = createApp({
  /* ... */
})

// register (object directive)
app.directive('my-directive', {
  /* custom directive hooks */
})

// register (function directive shorthand)
app.directive('my-directive', () => {
  /* ... */
})

// retrieve a registered directive
const myDirective = app.directive('my-directive')

相关用法


注:本文由纯净天空筛选整理自vuejs.org大神的英文原创作品 app.directive()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。