mirror of
https://github.com/OliveTin/OliveTin
synced 2025-11-03 06:37:03 +00:00
41 lines
1.1 KiB
Vue
41 lines
1.1 KiB
Vue
<template>
|
|
<ActionButton v-if="component.type == 'link'" :actionData="component.action" :key="component.title" />
|
|
|
|
<div v-else-if="component.type == 'directory'">
|
|
<router-link :to="{ name: 'Dashboard', params: { title: component.title } }" class="dashboard-link">
|
|
<button>
|
|
{{ component.title }}
|
|
</button>
|
|
</router-link>
|
|
</div>
|
|
|
|
<div v-else-if="component.type == 'display'" class="display">
|
|
<div v-html="component.title" />
|
|
</div>
|
|
|
|
<template v-else-if="component.type == 'fieldset'">
|
|
<fieldset>
|
|
<legend>{{ component.title }}</legend>
|
|
<template v-for="subcomponent in component.contents" :key="subcomponent.title">
|
|
<DashboardComponent :component="subcomponent" />
|
|
</template>
|
|
</fieldset>
|
|
</template>
|
|
|
|
<div v-else>
|
|
OTHER: {{ component.type }}
|
|
{{ component }}
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<script setup>
|
|
import ActionButton from '../ActionButton.vue'
|
|
|
|
const props = defineProps({
|
|
component: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
})
|
|
</script> |