ant-design-vue/examples/App.vue

20 lines
243 B
Vue
Raw Normal View History

2020-03-23 03:00:24 +00:00
<template>
2020-06-11 08:13:09 +00:00
<div>
2020-06-20 07:14:51 +00:00
<demo />
2020-06-11 08:13:09 +00:00
</div>
2020-03-23 03:00:24 +00:00
</template>
2020-06-11 08:13:09 +00:00
<script>
2020-07-29 09:13:29 +00:00
import demo from '../antdv-demo/docs/divider/demo/index';
2020-06-20 07:14:51 +00:00
2020-06-11 08:13:09 +00:00
export default {
2020-06-20 07:14:51 +00:00
components: {
demo,
},
2020-06-11 08:13:09 +00:00
data() {
return {
2020-06-20 07:14:51 +00:00
current: ['mail'],
2020-06-11 08:13:09 +00:00
};
},
};
</script>