fix: use vue3 v-model bindings

see: https://v3.vuejs.org/guide/migration/v-model.html
This commit is contained in:
Dominik Pschenitschni 2021-08-23 21:18:12 +02:00
parent 2ef2bb7700
commit 51a740f53c
No known key found for this signature in database
GPG key ID: B257AC0149F43A77
29 changed files with 114 additions and 96 deletions

View file

@ -60,6 +60,7 @@ export default {
successMsg: '',
}
},
emits: ['foundApi'],
created() {
if (this.apiUrl === '') {
this.configureApi = true

View file

@ -51,5 +51,6 @@ export default {
default: false,
},
},
emits: ['close'],
}
</script>

View file

@ -77,6 +77,7 @@ export default {
default: false,
},
},
emits: ['create', 'primary', 'tertary'],
methods: {
primary() {
this.$emit('create')

View file

@ -37,6 +37,7 @@ export default {
default: 'ellipsis-h',
},
},
emits: ['close'],
methods: {
hide(e) {
if (this.open) {

View file

@ -49,6 +49,7 @@ export default {
default: true,
},
},
emits: ['change'],
computed: {
tooltipText() {
if (this.disabled) {