fix: use vue3 v-model bindings
see: https://v3.vuejs.org/guide/migration/v-model.html
This commit is contained in:
@ -60,6 +60,7 @@ export default {
|
||||
successMsg: '',
|
||||
}
|
||||
},
|
||||
emits: ['foundApi'],
|
||||
created() {
|
||||
if (this.apiUrl === '') {
|
||||
this.configureApi = true
|
||||
|
@ -51,5 +51,6 @@ export default {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
emits: ['close'],
|
||||
}
|
||||
</script>
|
||||
|
@ -77,6 +77,7 @@ export default {
|
||||
default: false,
|
||||
},
|
||||
},
|
||||
emits: ['create', 'primary', 'tertary'],
|
||||
methods: {
|
||||
primary() {
|
||||
this.$emit('create')
|
||||
|
@ -37,6 +37,7 @@ export default {
|
||||
default: 'ellipsis-h',
|
||||
},
|
||||
},
|
||||
emits: ['close'],
|
||||
methods: {
|
||||
hide(e) {
|
||||
if (this.open) {
|
||||
|
@ -49,6 +49,7 @@ export default {
|
||||
default: true,
|
||||
},
|
||||
},
|
||||
emits: ['change'],
|
||||
computed: {
|
||||
tooltipText() {
|
||||
if (this.disabled) {
|
||||
|
Reference in New Issue
Block a user