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.
39 lines
752 B
39 lines
752 B
<template>
|
|
<demo-sort>
|
|
<basic />
|
|
<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 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,
|
|
OnChange,
|
|
},
|
|
setup() {
|
|
return {};
|
|
},
|
|
});
|
|
</script>
|