vuecssuiant-designantdreactantantd-vueenterprisefrontendui-designvue-antdvue-antd-uivue3vuecomponent
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.
21 lines
582 B
21 lines
582 B
import '@babel/polyfill'; |
|
import 'ant-design-vue/style.js'; |
|
import { createApp, version } from 'vue'; |
|
import App from './App.vue'; |
|
import antd from 'ant-design-vue/index.js'; |
|
|
|
// eslint-disable-next-line no-console |
|
console.log('Vue version: ', version); |
|
const basic = (_, { slots }) => { |
|
return slots && slots.default && slots.default(); |
|
}; |
|
const app = createApp(App); |
|
app |
|
.component('demo-sort', basic) |
|
.component('md', basic) |
|
.component('api', basic) |
|
.component('CN', basic) |
|
.component('US', basic) |
|
.component('demo-container', basic) |
|
.use(antd) |
|
.mount('#app');
|
|
|