2024-01-30 08:01:40 +00:00
|
|
|
<template>
|
2024-01-30 14:35:32 +00:00
|
|
|
<span :class="cx('root')" v-bind="ptm('root')">
|
2024-01-30 08:01:40 +00:00
|
|
|
<slot />
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import BaseFloatLabel from './BaseFloatLabel.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'FloatLabel',
|
|
|
|
extends: BaseFloatLabel
|
|
|
|
};
|
|
|
|
</script>
|