wip
This commit is contained in:
@@ -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"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<Page>
|
||||
<Head><title>{{ __('App') }}</title></Head>
|
||||
<Head :title="`${this.__('Applicaties')} - ${this.site.domain}`"></Head>
|
||||
<TopBar :breadcrumbs="breadcrumbs" />
|
||||
|
||||
<Content>
|
||||
|
||||
@@ -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
2
resources/js/app.js
vendored
@@ -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';
|
||||
|
||||
@@ -54,10 +54,10 @@ export default {
|
||||
default: 'md'
|
||||
},
|
||||
loading: {
|
||||
default: false,
|
||||
default: null,
|
||||
},
|
||||
disabled: {
|
||||
default: false,
|
||||
default: null,
|
||||
},
|
||||
},
|
||||
data() {
|
||||
|
||||
Reference in New Issue
Block a user