bind-tweet.js 211 B

123456789
  1. import { createApp } from 'vue'
  2. import App from '@/view/iframe/bind-tweet/bind-tweet.vue'
  3. const app = createApp(App);
  4. import CoutomSentry from "@/uilts/sentry.js"
  5. CoutomSentry.initVue(app)
  6. app.mount('#app');