ant-design-vue/examples/App.vue

21 lines
286 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-21 03:28:07 +00:00
<a-button><span>按钮</span></a-button>
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-06-25 14:21:23 +00:00
import demo from '../antdv-demo/docs/upload/demo/drag';
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>