6 lines
116 B
TypeScript
6 lines
116 B
TypeScript
import { App } from 'vue'
|
|
import theme from './theme'
|
|
export function setupMixin(app: App) {
|
|
app.mixin(theme)
|
|
}
|