mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-15 23:54:04 +08:00
12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
import { App } from 'vue';
|
|
|
|
// import { x } from '@/directives';
|
|
|
|
/**
|
|
* 注册全局自定义指令
|
|
* @param app
|
|
*/
|
|
export function setupDirectives(app: App) {
|
|
// app.directive('x', x);
|
|
}
|