primevue-mirror/doc/tabmenu/ControlledDoc.vue

98 lines
3.4 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
2023-11-09 08:28:04 +00:00
<p>Tabs can be controlled programmatically using <i>activeIndex</i> property.</p>
2023-02-28 08:29:30 +00:00
</DocSectionText>
<div class="card">
2023-11-09 08:28:04 +00:00
<div class="flex mb-2 gap-2 justify-content-end">
<Button @click="active = 0" rounded label="1" class="w-2rem h-2rem p-0" :outlined="active !== 0" />
<Button @click="active = 1" rounded label="2" class="w-2rem h-2rem p-0" :outlined="active !== 1" />
<Button @click="active = 2" rounded label="3" class="w-2rem h-2rem p-0" :outlined="active !== 2" />
</div>
2023-02-28 08:29:30 +00:00
<TabMenu v-model:activeIndex="active" :model="items" />
</div>
<DocSectionCode :code="code" />
</template>
<script>
export default {
data() {
return {
2023-11-09 08:28:04 +00:00
active: 0,
2023-02-28 08:29:30 +00:00
items: [
2023-11-09 08:28:04 +00:00
{ label: 'Dashboard', icon: 'pi pi-home' },
{ label: 'Transactions', icon: 'pi pi-chart-line' },
{ label: 'Products', icon: 'pi pi-list' },
{ label: 'Messages', icon: 'pi pi-inbox' }
2023-02-28 08:29:30 +00:00
],
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-11-09 08:28:04 +00:00
<div class="flex mb-2 gap-2 justify-content-end">
<Button @click="active = 0" rounded label="1" class="w-2rem h-2rem p-0" :outlined="active !== 0" />
<Button @click="active = 1" rounded label="2" class="w-2rem h-2rem p-0" :outlined="active !== 1" />
<Button @click="active = 2" rounded label="3" class="w-2rem h-2rem p-0" :outlined="active !== 2" />
</div>
2023-10-15 09:38:39 +00:00
<TabMenu v-model:activeIndex="active" :model="items" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
2023-11-09 08:28:04 +00:00
<div class="flex mb-2 gap-2 justify-content-end">
<Button @click="active = 0" rounded label="1" class="w-2rem h-2rem p-0" :outlined="active !== 0" />
<Button @click="active = 1" rounded label="2" class="w-2rem h-2rem p-0" :outlined="active !== 1" />
<Button @click="active = 2" rounded label="3" class="w-2rem h-2rem p-0" :outlined="active !== 2" />
</div>
2023-02-28 08:29:30 +00:00
<TabMenu v-model:activeIndex="active" :model="items" />
</div>
</template>
<script>
export default {
data() {
return {
2023-11-09 08:28:04 +00:00
active: 0,
2023-02-28 08:29:30 +00:00
items: [
2023-11-09 08:28:04 +00:00
{ label: 'Dashboard', icon: 'pi pi-home' },
{ label: 'Transactions', icon: 'pi pi-chart-line' },
{ label: 'Products', icon: 'pi pi-list' },
{ label: 'Messages', icon: 'pi pi-inbox' }
2023-02-28 08:29:30 +00:00
]
2023-11-09 08:28:04 +00:00
}
2023-02-28 08:29:30 +00:00
}
2023-11-09 08:28:04 +00:00
}
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
2023-11-09 08:28:04 +00:00
<div class="flex mb-2 gap-2 justify-content-end">
<Button @click="active.value = 0" rounded label="1" class="w-2rem h-2rem p-0" :outlined="active !== 0" />
<Button @click="active.value = 1" rounded label="2" class="w-2rem h-2rem p-0" :outlined="active !== 1" />
<Button @click="active.value = 2" rounded label="3" class="w-2rem h-2rem p-0" :outlined="active !== 2" />
</div>
2023-02-28 08:29:30 +00:00
<TabMenu v-model:activeIndex="active" :model="items" />
</div>
</template>
<script setup>
import { ref } from "vue";
2023-11-09 08:28:04 +00:00
const active = ref(0);
2023-02-28 08:29:30 +00:00
const items = ref([
2023-11-09 08:28:04 +00:00
{ label: 'Dashboard', icon: 'pi pi-home' },
{ label: 'Transactions', icon: 'pi pi-chart-line' },
{ label: 'Products', icon: 'pi pi-list' },
{ label: 'Messages', icon: 'pi pi-inbox' }
2023-02-28 08:29:30 +00:00
]);
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
}
};
</script>