7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
|
|
import type { App } from 'vue';
|
||
|
|
import { authDirective } from './auth';
|
||
|
|
|
||
|
|
export function setupDirectives(app: App) {
|
||
|
|
app.directive('auth', authDirective);
|
||
|
|
}
|