소스 검색

[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');