@userfrosting/theme-pink-cupcake
Version:
Pink Cupcake Theme for UserFrosting
19 lines (16 loc) • 402 B
text/typescript
import type { App } from 'vue'
import { ErrorPage } from '../views/Core'
/**
* Register every Core components & views globally
* See : https://vuejs.org/guide/components/registration
*/
export default {
install: (app: App) => {
app.component('UFErrorPage', ErrorPage)
}
}
declare module 'vue' {
export interface GlobalComponents {
UFErrorPage: typeof ErrorPage
}
}