mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 13:08:48 +08:00
20 lines
273 B
Vue
20 lines
273 B
Vue
<template>
|
|
<div>
|
|
<h1>Basic</h1>
|
|
<Basic />
|
|
<h1>Disabled</h1>
|
|
<Disabled />
|
|
<Layout />
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import Basic from './basic'
|
|
import Disabled from './disabled'
|
|
export default {
|
|
components: {
|
|
Basic,
|
|
Disabled,
|
|
},
|
|
}
|
|
</script>
|