20 lines
346 B
Vue
20 lines
346 B
Vue
<template>
|
|
<tiny-tree-menu :search-icon="IconCalendar"></tiny-tree-menu>
|
|
</template>
|
|
|
|
<script lang="jsx">
|
|
import { TreeMenu } from '@opentiny/vue'
|
|
import { IconCalendar } from '@opentiny/vue-icon'
|
|
|
|
export default {
|
|
components: {
|
|
TinyTreeMenu: TreeMenu
|
|
},
|
|
data() {
|
|
return {
|
|
IconCalendar: IconCalendar()
|
|
}
|
|
}
|
|
}
|
|
</script>
|