navigation in backoffice works again
This commit is contained in:
@@ -15,6 +15,8 @@
|
||||
export default {
|
||||
name: 'uiAlias',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
|
||||
@@ -15,6 +15,8 @@
|
||||
export default {
|
||||
name: 'uiCheckList',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
value: {
|
||||
type: Array,
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
<template>
|
||||
<!-- // TODO notfound view works and can be used here -->
|
||||
<div class="page page-error" :class="{'theme-dark': dark }">
|
||||
<i class="page-error-icon fth-cloud-snow"></i>
|
||||
<p class="page-error-text">
|
||||
|
||||
@@ -29,6 +29,8 @@
|
||||
export default {
|
||||
name: 'uiFormHeader',
|
||||
|
||||
emits: ['delete'],
|
||||
|
||||
props: {
|
||||
title: {
|
||||
type: String,
|
||||
@@ -69,7 +71,7 @@
|
||||
computed: {
|
||||
actionsDefined()
|
||||
{
|
||||
return !this.isCreate && (this.canDelete || this.$scopedSlots.hasOwnProperty('actions'));
|
||||
return !this.isCreate && (this.canDelete || typeof this.$slots.actions === 'function');
|
||||
}
|
||||
},
|
||||
|
||||
|
||||
@@ -32,6 +32,8 @@
|
||||
}
|
||||
},
|
||||
|
||||
emits: ['load', 'submit'],
|
||||
|
||||
data: () => ({
|
||||
dirty: false,
|
||||
loadingState: 'default',
|
||||
|
||||
@@ -16,6 +16,8 @@
|
||||
export default {
|
||||
name: 'uiInputList',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
addLabel: {
|
||||
type: String,
|
||||
|
||||
@@ -66,6 +66,8 @@
|
||||
export default {
|
||||
name: 'uiMediaOld',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
disabled: {
|
||||
type: Boolean,
|
||||
|
||||
@@ -19,6 +19,8 @@
|
||||
export default {
|
||||
name: 'uiRte',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
|
||||
@@ -23,6 +23,8 @@
|
||||
}
|
||||
},
|
||||
|
||||
emits: ['input', 'change', 'submit'],
|
||||
|
||||
computed: {
|
||||
|
||||
},
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
export default {
|
||||
name: 'uiTags',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
addLabel: {
|
||||
type: String,
|
||||
|
||||
@@ -13,6 +13,8 @@
|
||||
export default {
|
||||
name: 'uiToggle',
|
||||
|
||||
emits: ['input'],
|
||||
|
||||
props: {
|
||||
value: {
|
||||
type: Boolean,
|
||||
|
||||
Reference in New Issue
Block a user