6 lines
115 B
JavaScript
Raw Normal View History

import { createApp } from 'vue';
import App from './App.vue';
import './style.css';
createApp(App).mount('#app');