9 lines
125 B
JavaScript
9 lines
125 B
JavaScript
import { useAuth } from './auth';
|
||
|
||
/**
|
||
* 指令:v-auth
|
||
*/
|
||
export const registerDirective = (app) => {
|
||
useAuth(app);
|
||
};
|