nankai-cms-admin/src/components/cms/template/parameter-input/ArticleInput.vue

15 lines
249 B
Vue
Raw Normal View History

2025-03-13 09:50:20 +08:00
<template>
<ArticleSelect
:multiple="false"
value-key="uid"
/>
</template>
<script>
import ArticleSelect from '@/components/cms/article/ArticleSelect'
export default {
name: 'ArticleInput',
components: { ArticleSelect }
}
</script>