Refactor #5175 - FloatLabel

This commit is contained in:
tugcekucukoglu 2024-01-30 11:01:40 +03:00
parent 0dd5d5cea3
commit 355bbebe7e
10 changed files with 241 additions and 96 deletions

View file

@ -0,0 +1,14 @@
<template>
<span :class="cx('root')" v-bind="ptm('root')" data-pc-name="floatlabel">
<slot />
</span>
</template>
<script>
import BaseFloatLabel from './BaseFloatLabel.vue';
export default {
name: 'FloatLabel',
extends: BaseFloatLabel
};
</script>