75 lines
1.9 KiB
Vue
75 lines
1.9 KiB
Vue
|
<template>
|
||
|
<DocSectionText v-bind="$attrs">
|
||
|
<p>A floating label appears on top of the input field when focused.</p>
|
||
|
</DocSectionText>
|
||
|
<div class="card flex justify-content-center">
|
||
|
<span class="p-float-label">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" class="md:w-20rem w-full" />
|
||
|
<label>Tree Select</label>
|
||
|
</span>
|
||
|
</div>
|
||
|
<DocSectionCode :code="code" :service="['NodeService']" v-bind="$attrs" />
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { NodeService } from '/service/NodeService';
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
nodes: null,
|
||
|
selectedValue: null,
|
||
|
code: {
|
||
|
basic: `
|
||
|
<span class="p-float-label">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="TreeSelect" />
|
||
|
</span>`,
|
||
|
options: `
|
||
|
<template>
|
||
|
<div class="card flex justify-content-center">
|
||
|
<span class="p-float-label">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="TreeSelect" />
|
||
|
</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
nodes: null,
|
||
|
selectedValue: null,
|
||
|
}
|
||
|
},
|
||
|
mounted() {
|
||
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
||
|
}
|
||
|
}
|
||
|
<\/script>`,
|
||
|
composition: `
|
||
|
<template>
|
||
|
<div class="card flex justify-content-center">
|
||
|
<span class="p-float-label">
|
||
|
<TreeSelect v-model="selectedValue" :options="nodes" placeholder="TreeSelect" />
|
||
|
</span>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { ref, onMounted } from 'vue';
|
||
|
|
||
|
const nodes = ref(null);
|
||
|
const selectedValue = ref(null);
|
||
|
|
||
|
onMounted(() => {
|
||
|
NodeService.getTreeNodes().then((data) => (nodes.value = data));
|
||
|
});
|
||
|
<\/script>`
|
||
|
}
|
||
|
};
|
||
|
},
|
||
|
mounted() {
|
||
|
NodeService.getTreeNodes().then((data) => (this.nodes = data));
|
||
|
}
|
||
|
};
|
||
|
</script>
|