bind-tweet.js 238 B

12345678910
  1. import { createApp } from 'vue'
  2. import App from '@/view/iframe/bind-tweet/bind-tweet.vue'
  3. import ElementPlus from 'element-plus'
  4. import 'element-plus/dist/index.css'
  5. const app = createApp(App);
  6. app.use(ElementPlus);
  7. app.mount('#app');