2021-09-17 00:18:50 +08:00
|
|
|
import 'normalize.css'
|
2021-09-19 00:09:41 +08:00
|
|
|
// import 'element-plus/dist/index.css'
|
2022-02-21 21:36:34 +08:00
|
|
|
|
2021-09-19 00:09:41 +08:00
|
|
|
// for dev
|
2022-03-18 23:53:11 +08:00
|
|
|
// reset
|
|
|
|
import '../../../packages/theme-chalk/src/reset.scss'
|
2021-09-19 00:09:41 +08:00
|
|
|
import '../../../packages/theme-chalk/src/index.scss'
|
2022-02-21 21:36:34 +08:00
|
|
|
// for dark mode
|
2022-03-13 22:42:57 +08:00
|
|
|
import '../../../packages/theme-chalk/src/dark/css-vars.scss'
|
|
|
|
|
2022-04-04 22:46:00 +08:00
|
|
|
import './styles/css-vars.scss'
|
2021-09-17 00:18:50 +08:00
|
|
|
import './styles/app.scss'
|
|
|
|
|
2022-03-24 19:42:09 +08:00
|
|
|
import 'uno.css'
|
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
import VPApp from './components/vp-app.vue'
|
|
|
|
import VPDemo from './components/vp-demo.vue'
|
2022-11-01 18:09:19 +08:00
|
|
|
import ApiTyping from './components/globals/vp-api-typing.vue'
|
2022-11-01 20:31:39 +08:00
|
|
|
import ApiFunctionType from './components/globals/vp-api-function.vue'
|
2022-11-03 14:01:20 +08:00
|
|
|
import ApiBooleanType from './components/globals/vp-api-bool.vue'
|
|
|
|
import ApiStringType from './components/globals/vp-api-string.vue'
|
|
|
|
import ApiNumberType from './components/globals/vp-api-number.vue'
|
2022-11-04 16:19:17 +08:00
|
|
|
import ApiRefType from './components/globals/vp-api-ref.vue'
|
2022-11-01 20:31:39 +08:00
|
|
|
import ApiEnumType from './components/globals/vp-api-enum.vue'
|
2022-11-02 22:11:19 +08:00
|
|
|
import ApiExternalType from './components/globals/vp-api-external.vue'
|
2021-09-17 00:18:50 +08:00
|
|
|
import IconList from './components/globals/icons.vue'
|
2021-10-05 02:16:40 +08:00
|
|
|
|
2021-12-30 19:00:11 +08:00
|
|
|
import type { Component } from 'vue'
|
|
|
|
|
2021-09-17 00:18:50 +08:00
|
|
|
export { default as NotFound } from './components/vp-not-found.vue'
|
|
|
|
|
|
|
|
export default VPApp
|
2021-12-30 19:00:11 +08:00
|
|
|
export const globals: [string, Component][] = [
|
2021-09-17 00:18:50 +08:00
|
|
|
['Demo', VPDemo],
|
|
|
|
['IconList', IconList],
|
2022-11-01 18:09:19 +08:00
|
|
|
['ApiTyping', ApiTyping],
|
2022-11-01 20:31:39 +08:00
|
|
|
['FunctionType', ApiFunctionType],
|
|
|
|
['EnumType', ApiEnumType],
|
2022-11-03 14:01:20 +08:00
|
|
|
['BooleanType', ApiBooleanType],
|
|
|
|
['StringType', ApiStringType],
|
|
|
|
['NumberType', ApiNumberType],
|
2022-11-04 16:19:17 +08:00
|
|
|
['RefType', ApiRefType],
|
2022-11-02 22:11:19 +08:00
|
|
|
['ExternalType', ApiExternalType],
|
2021-09-17 00:18:50 +08:00
|
|
|
]
|