You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr-web/src/plugins/directives.ts

12 lines
240 B

import type { App } from 'vue'
import InfiniteScroll from '@/directives/infinite-scroll'
/**
* 注册全局自定义指令
* @param app
*/
export function setupDirectives(app: App) {
app.directive('InfiniteScroll', InfiniteScroll)
}