pull/5861/head^2
tugcekucukoglu 2024-07-26 12:34:21 +03:00
parent cbec74dd7e
commit d60b6cfd81
1 changed files with 21 additions and 21 deletions

View File

@ -28,7 +28,7 @@ export default {
data: {
key: '0',
type: 'person',
styleClass: 'bg-indigo-100 text-indigo-900 rounded-xl',
styleClass: '!bg-indigo-100 !text-indigo-900 rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png',
name: 'Amy Elsner',
@ -38,7 +38,7 @@ export default {
{
key: '0_0',
type: 'person',
styleClass: 'bg-purple-100 text-purple-900 rounded-xl',
styleClass: '!bg-purple-100 !text-purple-900 rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png',
name: 'Anna Fali',
@ -47,18 +47,18 @@ export default {
children: [
{
label: 'Sales',
styleClass: 'bg-purple-100 text-purple-900 rounded-xl'
styleClass: '!bg-purple-100 !text-purple-900 rounded-xl'
},
{
label: 'Marketing',
styleClass: 'bg-purple-100 text-purple-900 rounded-xl'
styleClass: '!bg-purple-100 !text-purple-900 rounded-xl'
}
]
},
{
key: '0_1',
type: 'person',
styleClass: 'bg-teal-100 text-teal-900 rounded-xl',
styleClass: '!bg-teal-100 !text-teal-900 rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png',
name: 'Stephen Shaw',
@ -67,11 +67,11 @@ export default {
children: [
{
label: 'Development',
styleClass: 'bg-teal-100 text-teal-900 rounded-xl'
styleClass: '!bg-teal-100 !text-teal-900 rounded-xl'
},
{
label: 'UI/UX Design',
styleClass: 'bg-teal-100 text-teal-900 rounded-xl'
styleClass: '!bg-teal-100 !text-teal-900 rounded-xl'
}
]
}
@ -121,7 +121,7 @@ export default {
data: {
key: '0',
type: 'person',
styleClass: 'bg-indigo-100 text-white rounded-xl',
styleClass: '!bg-indigo-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png',
name: 'Amy Elsner',
@ -131,7 +131,7 @@ export default {
{
key: '0_0',
type: 'person',
styleClass: 'bg-purple-100 text-white rounded-xl',
styleClass: '!bg-purple-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png',
name: 'Anna Fali',
@ -140,18 +140,18 @@ export default {
children: [
{
label: 'Sales',
styleClass: 'bg-purple-100 text-white rounded-xl'
styleClass: '!bg-purple-100 text-white rounded-xl'
},
{
label: 'Marketing',
styleClass: 'bg-purple-100 text-white rounded-xl'
styleClass: '!bg-purple-100 text-white rounded-xl'
}
]
},
{
key: '0_1',
type: 'person',
styleClass: 'bg-teal-100 text-white rounded-xl',
styleClass: '!bg-teal-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png',
name: 'Stephen Shaw',
@ -160,11 +160,11 @@ export default {
children: [
{
label: 'Development',
styleClass: 'bg-teal-100 text-white rounded-xl'
styleClass: '!bg-teal-100 text-white rounded-xl'
},
{
label: 'UI/UX Design',
styleClass: 'bg-teal-100 text-white rounded-xl'
styleClass: '!bg-teal-100 text-white rounded-xl'
}
]
}
@ -201,7 +201,7 @@ import { ref } from "vue";
const data = ref({
key: '0',
type: 'person',
styleClass: 'bg-indigo-100 text-white rounded-xl',
styleClass: '!bg-indigo-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/amyelsner.png',
name: 'Amy Elsner',
@ -211,7 +211,7 @@ const data = ref({
{
key: '0_0',
type: 'person',
styleClass: 'bg-purple-100 text-white rounded-xl',
styleClass: '!bg-purple-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/annafali.png',
name: 'Anna Fali',
@ -220,18 +220,18 @@ const data = ref({
children: [
{
label: 'Sales',
styleClass: 'bg-purple-100 text-white rounded-xl'
styleClass: '!bg-purple-100 text-white rounded-xl'
},
{
label: 'Marketing',
styleClass: 'bg-purple-100 text-white rounded-xl'
styleClass: '!bg-purple-100 text-white rounded-xl'
}
]
},
{
key: '0_1',
type: 'person',
styleClass: 'bg-teal-100 text-white rounded-xl',
styleClass: '!bg-teal-100 text-white rounded-xl',
data: {
image: 'https://primefaces.org/cdn/primevue/images/avatar/stephenshaw.png',
name: 'Stephen Shaw',
@ -240,11 +240,11 @@ const data = ref({
children: [
{
label: 'Development',
styleClass: 'bg-teal-100 text-white rounded-xl'
styleClass: '!bg-teal-100 text-white rounded-xl'
},
{
label: 'UI/UX Design',
styleClass: 'bg-teal-100 text-white rounded-xl'
styleClass: '!bg-teal-100 text-white rounded-xl'
}
]
}