initDirectives.ts 161 B

12345678
  1. import type { App } from 'vue';
  2. import title from '@/directives/title';
  3. export default {
  4. install(app: App) {
  5. app.directive('title', title);
  6. }
  7. };