1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-10 17:32:36 +00:00
primevue-mirror/components/lib/floatlabel/FloatLabel.vue
2024-02-11 08:10:29 +00:00

15 lines
274 B
Vue

<template>
<span :class="cx('root')" v-bind="ptmi('root')">
<slot />
</span>
</template>
<script>
import BaseFloatLabel from './BaseFloatLabel.vue';
export default {
name: 'FloatLabel',
extends: BaseFloatLabel,
inheritAttrs: false
};
</script>