浏览代码

[edit] style

wenliming 2 年之前
父节点
当前提交
155c858118
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/iframe/buy-nft.js

+ 3 - 0
src/iframe/buy-nft.js

@@ -1,5 +1,7 @@
 import { createApp } from 'vue'
 import App from '@/view/iframe/buy-nft/index.vue'
+import ElementPlus from 'element-plus'
+import 'element-plus/dist/index.css'
 
 import router from '@/router/buy-nft.js'
 
@@ -7,4 +9,5 @@ const app = createApp(App);
 
 
 app.use(router)
+app.use(ElementPlus);
 app.mount('#app');