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