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.
41 lines
830 B
41 lines
830 B
<template> |
|
<demo-sort> |
|
<basic /> |
|
<horizontal /> |
|
<static /> |
|
<on-click /> |
|
<customize-highlight /> |
|
<target-offset /> |
|
<on-change /> |
|
</demo-sort> |
|
</template> |
|
|
|
<script lang="ts"> |
|
import Basic from './basic.vue'; |
|
import Static from './static.vue'; |
|
import OnClick from './onClick.vue'; |
|
import CustomizeHighlight from './customizeHighlight.vue'; |
|
import TargetOffset from './targetOffset.vue'; |
|
import OnChange from './onChange.vue'; |
|
import Horizontal from './horizontal.vue'; |
|
import CN from '../index.zh-CN.md'; |
|
import US from '../index.en-US.md'; |
|
import { defineComponent } from 'vue'; |
|
|
|
export default defineComponent({ |
|
CN, |
|
US, |
|
components: { |
|
Basic, |
|
Static, |
|
OnClick, |
|
CustomizeHighlight, |
|
TargetOffset, |
|
Horizontal, |
|
OnChange, |
|
}, |
|
setup() { |
|
return {}; |
|
}, |
|
}); |
|
</script>
|
|
|