primevue-mirror/components/lib/floatlabel/FloatLabel.vue

16 lines
274 B
Vue
Raw Normal View History

2024-01-30 08:01:40 +00:00
<template>
2024-02-11 08:10:29 +00:00
<span :class="cx('root')" v-bind="ptmi('root')">
2024-01-30 08:01:40 +00:00
<slot />
</span>
</template>
<script>
import BaseFloatLabel from './BaseFloatLabel.vue';
export default {
name: 'FloatLabel',
2024-02-11 08:10:29 +00:00
extends: BaseFloatLabel,
inheritAttrs: false
2024-01-30 08:01:40 +00:00
};
</script>