56 lines
1.0 KiB
Vue
56 lines
1.0 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>InputText is used with the <i>v-model</i> property for two-way value binding.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<InputText v-model="value" type="text" />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: null,
|
|
code: {
|
|
basic: `
|
|
<InputText type="text" v-model="value" />
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<InputText type="text" v-model="value" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: null
|
|
}
|
|
}
|
|
}
|
|
<\/script>
|
|
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<InputText type="text" v-model="value" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from 'vue';
|
|
|
|
const value = ref(null);
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
}
|
|
};
|
|
</script>
|