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.
80 lines
1.3 KiB
80 lines
1.3 KiB
import '@babel/polyfill';
|
|
import { createApp, version } from 'vue';
|
|
import App from './App.vue';
|
|
import {
|
|
Badge,
|
|
AutoComplete,
|
|
Radio,
|
|
Spin,
|
|
Select,
|
|
Input,
|
|
InputNumber,
|
|
Rate,
|
|
Button,
|
|
Upload,
|
|
Icon,
|
|
Modal,
|
|
Progress,
|
|
Tooltip,
|
|
Col,
|
|
Row,
|
|
FormModel,
|
|
Switch,
|
|
Checkbox,
|
|
Cascader,
|
|
Pagination,
|
|
List,
|
|
Collapse,
|
|
Card,
|
|
Avatar,
|
|
Tree,
|
|
notification,
|
|
message,
|
|
} from 'ant-design-vue';
|
|
|
|
import 'ant-design-vue/style.js';
|
|
|
|
// eslint-disable-next-line no-console
|
|
console.log('Vue version: ', version);
|
|
const basic = {
|
|
render() {
|
|
return this.$slots?.default();
|
|
},
|
|
};
|
|
const app = createApp(App);
|
|
app.config.globalProperties.$notification = notification;
|
|
app.config.globalProperties.$message = message;
|
|
app
|
|
.component('demo-sort', { ...basic })
|
|
.component('md', { ...basic })
|
|
.component('api', { ...basic })
|
|
.component('CN', { ...basic })
|
|
.component('US', { ...basic })
|
|
.use(Pagination)
|
|
.use(Select)
|
|
.use(Spin)
|
|
.use(Upload)
|
|
.use(Button)
|
|
.use(Icon)
|
|
.use(Modal)
|
|
.use(Progress)
|
|
.use(Rate)
|
|
.use(Input)
|
|
.use(Tooltip)
|
|
.use(Col)
|
|
.use(Row)
|
|
.use(Badge)
|
|
.use(Radio)
|
|
.use(Switch)
|
|
.use(Checkbox)
|
|
.use(InputNumber)
|
|
.use(AutoComplete)
|
|
.use(FormModel)
|
|
.use(Cascader)
|
|
.use(List)
|
|
.use(Collapse)
|
|
.use(Avatar)
|
|
.use(Card)
|
|
.use(Tree)
|
|
.mount('#app');
|