Update various configuration files, components, and assets; enhance notification system and API endpoints; improve documentation and styles across the application.
This commit is contained in:
7
pages/devtool/config/application-log/index.vue
Normal file
7
pages/devtool/config/application-log/index.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div></div>
|
||||
</template>
|
||||
|
||||
<script setup></script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
27
pages/devtool/config/environment/index.vue
Normal file
27
pages/devtool/config/environment/index.vue
Normal file
@@ -0,0 +1,27 @@
|
||||
<script setup>
|
||||
definePageMeta({
|
||||
title: "Environment",
|
||||
middleware: ["auth"],
|
||||
requiresAuth: true,
|
||||
});
|
||||
|
||||
const { $swal, $router } = useNuxtApp();
|
||||
const env = ref({});
|
||||
|
||||
const { data: envData } = await useFetch("/api/devtool/config/env", {
|
||||
method: "GET",
|
||||
headers: {
|
||||
"Content-Type": "application/json",
|
||||
},
|
||||
});
|
||||
|
||||
env.value = envData.value.data;
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div>
|
||||
<LayoutsBreadcrumb />
|
||||
|
||||
<rs-code-mirror mode="javascript" v-model="env" disabled />
|
||||
</div>
|
||||
</template>
|
||||
7
pages/devtool/config/index.vue
Normal file
7
pages/devtool/config/index.vue
Normal file
@@ -0,0 +1,7 @@
|
||||
<template>
|
||||
<div></div>
|
||||
</template>
|
||||
|
||||
<script setup></script>
|
||||
|
||||
<style lang="scss" scoped></style>
|
||||
1108
pages/devtool/config/site-settings/index.vue
Normal file
1108
pages/devtool/config/site-settings/index.vue
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user