mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-09 17:02:38 +00:00
14 lines
248 B
Vue
14 lines
248 B
Vue
<template>
|
|
<span :class="cx('root')" v-bind="ptm('root')">
|
|
<slot />
|
|
</span>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseFloatLabel from './BaseFloatLabel.vue';
|
|
|
|
export default {
|
|
name: 'FloatLabel',
|
|
extends: BaseFloatLabel
|
|
};
|
|
</script>
|