mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
71e6365a74
* docs(components): [autocomplete] * Add new API component `ref-type`. * Update doc API name font-family. * Update API popup style. * Update Autocomplete documentations.
45 lines
1.5 KiB
TypeScript
45 lines
1.5 KiB
TypeScript
import 'normalize.css'
|
|
// import 'element-plus/dist/index.css'
|
|
|
|
// for dev
|
|
// reset
|
|
import '../../../packages/theme-chalk/src/reset.scss'
|
|
import '../../../packages/theme-chalk/src/index.scss'
|
|
// for dark mode
|
|
import '../../../packages/theme-chalk/src/dark/css-vars.scss'
|
|
|
|
import './styles/css-vars.scss'
|
|
import './styles/app.scss'
|
|
|
|
import 'uno.css'
|
|
|
|
import VPApp from './components/vp-app.vue'
|
|
import VPDemo from './components/vp-demo.vue'
|
|
import ApiTyping from './components/globals/vp-api-typing.vue'
|
|
import ApiFunctionType from './components/globals/vp-api-function.vue'
|
|
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'
|
|
import ApiRefType from './components/globals/vp-api-ref.vue'
|
|
import ApiEnumType from './components/globals/vp-api-enum.vue'
|
|
import ApiExternalType from './components/globals/vp-api-external.vue'
|
|
import IconList from './components/globals/icons.vue'
|
|
|
|
import type { Component } from 'vue'
|
|
|
|
export { default as NotFound } from './components/vp-not-found.vue'
|
|
|
|
export default VPApp
|
|
export const globals: [string, Component][] = [
|
|
['Demo', VPDemo],
|
|
['IconList', IconList],
|
|
['ApiTyping', ApiTyping],
|
|
['FunctionType', ApiFunctionType],
|
|
['EnumType', ApiEnumType],
|
|
['BooleanType', ApiBooleanType],
|
|
['StringType', ApiStringType],
|
|
['NumberType', ApiNumberType],
|
|
['RefType', ApiRefType],
|
|
['ExternalType', ApiExternalType],
|
|
]
|