Components added. Build issues fixed

This commit is contained in:
Bahadir Sofuoglu 2022-09-14 14:26:01 +03:00
parent 5b66ed1093
commit 18c3721848
344 changed files with 12446 additions and 8758 deletions

View file

@ -1,5 +1,5 @@
<template>
<input :class="['p-inputtext p-component', {'p-filled': filled}]" :value="modelValue" @input="onInput"/>
<input :class="['p-inputtext p-component', { 'p-filled': filled }]" :value="modelValue" @input="onInput" />
</template>
<script>
@ -16,8 +16,8 @@ export default {
},
computed: {
filled() {
return (this.modelValue != null && this.modelValue.toString().length > 0)
return this.modelValue != null && this.modelValue.toString().length > 0;
}
}
}
};
</script>