32 lines
780 B
Vue
32 lines
780 B
Vue
![]() |
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>When <i>disabled</i> is present, the element cannot be edited and focused.</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card flex justify-center">
|
||
|
<InputMask v-model="value" mask="99-999999" placeholder="Disabled" disabled />
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" />
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import InputMask from '@/plex/inputmask';
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const value = ref(null);
|
||
|
|
||
|
const code = ref(`
|
||
|
<template>
|
||
|
<div class="card flex justify-center">
|
||
|
<InputMask v-model="value" mask="99-999999" placeholder="Disabled" disabled />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import InputMask from '@/plex/inputmask';
|
||
|
import { ref } from 'vue';
|
||
|
|
||
|
const value = ref(null);
|
||
|
<\/script>
|
||
|
`);
|
||
|
</script>
|