1
0
Fork 0
mirror of https://github.com/primefaces/primevue.git synced 2025-05-10 09:22:34 +00:00
primevue-mirror/doc/cascadeselect/LoadingStateDoc.vue
2023-09-22 15:54:14 +03:00

42 lines
1,006 B
Vue

<template>
<DocSectionText v-bind="$attrs">
<p>Loading state can be used <i>loading</i> property.</p>
</DocSectionText>
<div class="card flex justify-content-center">
<CascadeSelect loading placeholder="Loading..." style="min-width: 14rem" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
code: {
basic: `
<CascadeSelect loading placeholder="Loading..." style="min-width: 14rem" />`,
options: `
<template>
<div class="card flex justify-content-center">
<CascadeSelect loading placeholder="Loading..." style="min-width: 14rem" />
</div>
</template>
<script>
<\/script>`,
composition: `
<template>
<div class="card flex justify-content-center">
<CascadeSelect loading placeholder="Loading..." style="min-width: 14rem" />
</div>
</template>
<script setup>
<\/script>`
}
};
}
};
</script>