mirror of
https://github.com/Chanzhaoyu/chatgpt-web.git
synced 2025-07-23 05:53:42 +00:00
7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import type { App } from 'vue'
|
|
import setupHighlightDirective from './highlight'
|
|
|
|
export function setupDirectives(app: App) {
|
|
setupHighlightDirective(app)
|
|
}
|