Update version.json to 0.0.129-vm
This commit is contained in:
@@ -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: {
|
||||
|
Reference in New Issue
Block a user