Update version.json to 0.0.129-vm

This commit is contained in:
Dede Fuji Abdul
2024-04-20 16:05:55 +07:00
parent 050e0b93a0
commit 50a6eb0a07
7 changed files with 41 additions and 28 deletions

View File

@@ -1,10 +1,5 @@
<script setup lang="ts">
interface DataItem {
id: any
name: any
}
import { ref, computed, watch } from 'vue'
import { ref, computed } from 'vue'
import { RichSelect } from '@flavorly/vanilla-components'
const props = defineProps({
@@ -13,11 +8,11 @@ const props = defineProps({
default: '0'
},
data: {
type: Array as () => DataItem[],
type: Array as () => any[],
default: []
},
selected: {
type: Object as () => DataItem,
type: Object as () => any,
default: () => ({ id: 0, name: '' })
},
indexSelected: {