72 lines
1.8 KiB
Vue
72 lines
1.8 KiB
Vue
<template>
|
|
<DocSectionText v-bind="$attrs">
|
|
<p>Invalid state is displayed using the <i>invalid</i> prop to indicate a failed validation. You can use this style when integrating with form validation libraries.</p>
|
|
</DocSectionText>
|
|
<div class="card flex justify-center">
|
|
<AutoComplete v-model="value" :suggestions="items" @complete="search" :invalid="value === ''" />
|
|
</div>
|
|
<DocSectionCode :code="code" />
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: '',
|
|
items: [],
|
|
code: {
|
|
basic: `
|
|
<AutoComplete v-model="value" :suggestions="items" @complete="search" :invalid="value === ''"/>
|
|
`,
|
|
options: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<AutoComplete v-model="value" :suggestions="items" @complete="search" :invalid="value === ''"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
value: '',
|
|
items: []
|
|
};
|
|
},
|
|
methods: {
|
|
search(event) {
|
|
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
}
|
|
}
|
|
};
|
|
<\/script>
|
|
`,
|
|
composition: `
|
|
<template>
|
|
<div class="card flex justify-center">
|
|
<AutoComplete v-model="value" :suggestions="items" @complete="search" :invalid="value === ''"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref } from "vue";
|
|
|
|
const value = ref("");
|
|
const items = ref([]);
|
|
|
|
const search = (event) => {
|
|
items.value = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
}
|
|
<\/script>
|
|
`
|
|
}
|
|
};
|
|
},
|
|
methods: {
|
|
search(event) {
|
|
this.items = [...Array(10).keys()].map((item) => event.query + '-' + item);
|
|
}
|
|
}
|
|
};
|
|
</script>
|