main_news.ts 164 B

12345678910
  1. import { createApp } from 'vue'
  2. import App from './AppNews.vue'
  3. const setupAll = async () => {
  4. const app = createApp(App)
  5. app.mount('#newsApp')
  6. }
  7. setupAll()