如果同时传递名称字符串和指令定义,则注册全局自定义指令,如果仅传递名称,则检索已注册的指令。
类型
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')
相关用法
- Vue.js app.config.warnHandler用法及代码示例
- Vue.js app.use()用法及代码示例
- Vue.js app.mount()用法及代码示例
- Vue.js app.config.errorHandler用法及代码示例
- Vue.js app.compilerOptions.isCustomElement用法及代码示例
- Vue.js app.version用法及代码示例
- Vue.js app.component()用法及代码示例
- Vue.js app.compilerOptions.whitespace用法及代码示例
- Vue.js app.compilerOptions.delimiters用法及代码示例
- Vue.js app.config.optionMergeStrategies用法及代码示例
- Vue.js app.compilerOptions.comments用法及代码示例
- Vue.js app.provide()用法及代码示例
- Vue.js useSSRContext()用法及代码示例
- Vue.js mergeProps()用法及代码示例
- Vue.js pipeToWebWritable()用法及代码示例
- Vue.js v-pre用法及代码示例
- Vue.js h()用法及代码示例
- Vue.js serverPrefetch用法及代码示例
- Vue.js customRef()用法及代码示例
- Vue.js <Transition>用法及代码示例
- Vue.js inject()用法及代码示例
- Vue.js mixins用法及代码示例
- Vue.js ComponentCustomProps用法及代码示例
- Vue.js reactive()用法及代码示例
- Vue.js ComponentCustomProperties用法及代码示例
注:本文由纯净天空筛选整理自vuejs.org大神的英文原创作品 app.directive()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。