18 lines
309 B
Vue
18 lines
309 B
Vue
|
<template>
|
||
|
<CategorySelect
|
||
|
:multiple="false"
|
||
|
value-key="uid"
|
||
|
:clearable="true"
|
||
|
:check-on-click-node="false"
|
||
|
/>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import CategorySelect from '@/components/cms/category/CategorySelect'
|
||
|
|
||
|
export default {
|
||
|
name: 'CategoryInput',
|
||
|
components: {CategorySelect}
|
||
|
}
|
||
|
</script>
|