15 lines
249 B
Vue
15 lines
249 B
Vue
|
<template>
|
||
|
<ArticleSelect
|
||
|
:multiple="false"
|
||
|
value-key="uid"
|
||
|
/>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import ArticleSelect from '@/components/cms/article/ArticleSelect'
|
||
|
export default {
|
||
|
name: 'ArticleInput',
|
||
|
components: { ArticleSelect }
|
||
|
}
|
||
|
</script>
|