ant-design-vue/examples/index.js

9 lines
223 B
JavaScript
Raw Normal View History

2020-05-27 11:11:46 +00:00
import '@babel/polyfill';
2020-07-08 14:28:09 +00:00
import { createApp, version } from 'vue';
2020-03-23 03:00:24 +00:00
import App from './App.vue';
2020-07-08 14:28:09 +00:00
// eslint-disable-next-line no-console
console.log('Vue version: ', version);
2020-08-15 16:21:58 +00:00
const app = createApp(App);
2020-08-15 16:21:58 +00:00
app.mount('#app');