File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,13 @@ export default [
1515 parser : tsParser ,
1616 ecmaVersion : 2020 ,
1717 sourceType : 'module' ,
18+ globals : {
19+ navigator : 'readonly' ,
20+ Navigator : 'readonly' ,
21+ Event : 'readonly' ,
22+ InputEvent : 'readonly' ,
23+ HTMLInputElement : 'readonly' ,
24+ } ,
1825 } ,
1926 rules : {
2027 'import-x/first' : 'error' ,
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ import EthLabel from './EthLabel.vue';
3737
3838const modelValue = defineModel <string >(' modelValue' );
3939
40- const { options } = defineProps <{
40+ const { options, label = ' ' } = defineProps <{
4141 options: Option [];
4242 disabled? : boolean ;
4343 label? : string ;
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ import EthLabel from './EthLabel.vue';
5959
6060const modelValue = defineModel <string >(' modelValue' );
6161
62- const { options } = defineProps <{
62+ const { options, label = ' ' } = defineProps <{
6363 options: Option [];
6464 disabled? : boolean ;
6565 label? : string ;
Original file line number Diff line number Diff line change 1- import { createHead } from '@unhead/vue' ;
1+ import { createHead } from '@unhead/vue/client ' ;
22import { createApp } from 'vue' ;
33import { createWebHistory , createRouter } from 'vue-router' ;
44
You can’t perform that action at this time.
0 commit comments