16 lines
274 B
Vue
16 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>
|