primevue-mirror/apps/showcase/doc/iftalabel/pt/PTViewer.vue

27 lines
570 B
Vue
Raw Normal View History

2024-09-19 07:01:02 +00:00
<template>
<DocPTViewer :docs="docs">
<IftaLabel>
<InputText id="username" v-model="value" autocomplete="off" />
<label for="username">Username</label>
</IftaLabel>
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
value: null,
docs: [
{
data: getPTOptions('IftaLabel'),
key: 'IftaLabel'
}
]
};
}
};
</script>