chore: import button-edit component
This commit is contained in:
parent
6f693c245f
commit
f64a6b76ea
|
@ -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} />
|
||||
</>
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue