This commit is contained in:
Dennis
2022-08-17 09:32:33 +02:00
parent 434046cd3e
commit d4c495eaee
99 changed files with 2373 additions and 2182 deletions

View File

@@ -1,7 +1,8 @@
<template>
<ul class="-ml-4 space-y-1">
<li v-for="item in items" v-if="item">
<li v-for="item in items">
<component
v-if="item"
:is="item.type && item.type === 'a' ? 'a' : 'inertia-link'"
:target="item.type && item.type === 'a' ? '_blank' : '_self'"
class="flex items-center h-10 px-4 font-medium text-medium-emphasis"

View File

@@ -1,6 +1,6 @@
<template>
<Page>
<Head><title>{{ __('App') }}</title></Head>
<Head :title="`${this.__('Applicaties')} - ${this.site.domain}`"></Head>
<TopBar :breadcrumbs="breadcrumbs" />
<Content>

View File

@@ -72,7 +72,6 @@
<TableHeader>{{ __('FTP password') }}</TableHeader>
<TableData :border="false">
<div v-if="ftp_password">
<span v-text="ftp_password"></span>
<copy :label="`${ftp_password}`" :value="ftp_password" />
</div>

2
resources/js/app.js vendored
View File

@@ -4,7 +4,7 @@ import Vue, {createApp, h} from 'vue';
import {InertiaProgress} from '@inertiajs/progress'
import Store from '@/store';
import PortalVue from 'portal-vue'
import vClickOutside from 'v-click-outside'
import vClickOutside from "click-outside-vue3"
import VueClipboard from 'vue-clipboard2'
import mixins from '@/mixins';
import axios from 'axios';

View File

@@ -54,10 +54,10 @@ export default {
default: 'md'
},
loading: {
default: false,
default: null,
},
disabled: {
default: false,
default: null,
},
},
data() {