You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
185 B

4 years ago
4 years ago
  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import './index.css'
  4. // define title and version from package.json
  5. document.title = APP_TITLE
  6. createApp(App).mount('#app')