chore: import button-edit component

This commit is contained in:
aalizzwell 2022-10-03 17:24:31 +08:00
parent 6f693c245f
commit f64a6b76ea
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,6 @@
import { defineComponent, SetupContext } from 'vue';
import { comboListProps, ComboListProps } from './combo-list.props';
import { ButtonEdit } from '../../button-edit';
export default defineComponent({
name: 'FComboList',
props: comboListProps,
@ -7,7 +8,9 @@ export default defineComponent({
setup(props: ComboListProps, context: SetupContext) {
return () => {
return (
<div id={props.id}>combo-list</div>
<>
<ButtonEdit id={props.id} />
</>
);
};
}