UNPKG
lighty-admin-vite
Version:
latest (3.4.0)
3.4.0
基于 Vue3、TypeScript、Element Plus、Pinia 和 Vite 等主流技术.
lighty-admin-vite
/
src
/
plugins
/
index.ts
11 lines
(9 loc)
•
294 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ type
App
}
from
"vue"
import
{ loadElementPlus }
from
"./element-plus"
import
{ loadElementPlusIcon }
from
"./element-plus-icon"
import
{ loadVxeTable }
from
"./vxe-table"
export
function
loadPlugins
(
app: App
) {
loadElementPlus
(app)
loadElementPlusIcon
(app)
loadVxeTable
(app) }