mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-06-28 09:16:55 +00:00
Build
This commit is contained in:
parent
79ad3c0a84
commit
66bd1da571
41
src/static/client/dist/assets/index-C7xxuubz.js
vendored
Normal file
41
src/static/client/dist/assets/index-C7xxuubz.js
vendored
Normal file
File diff suppressed because one or more lines are too long
41
src/static/client/dist/assets/index-CJOQRxVt.js
vendored
41
src/static/client/dist/assets/index-CJOQRxVt.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
4
src/static/client/dist/client.html
vendored
4
src/static/client/dist/client.html
vendored
@ -5,8 +5,8 @@
|
|||||||
<link rel="icon" href="/static/client/dist/img/Logo-2-128x128.png">
|
<link rel="icon" href="/static/client/dist/img/Logo-2-128x128.png">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<title>Vite App</title>
|
<title>Vite App</title>
|
||||||
<script type="module" crossorigin src="/static/client/dist/assets/index-CJOQRxVt.js"></script>
|
<script type="module" crossorigin src="/static/client/dist/assets/index-C7xxuubz.js"></script>
|
||||||
<link rel="stylesheet" crossorigin href="/static/client/dist/assets/index-D3MXTPtU.css">
|
<link rel="stylesheet" crossorigin href="/static/client/dist/assets/index-DtDMqk5z.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
@ -1,6 +1,10 @@
|
|||||||
<script setup>
|
<script setup async>
|
||||||
import './assets/main.css'
|
import './assets/main.css'
|
||||||
import NotificationList from "@/components/Notification/notificationList.vue";
|
import NotificationList from "@/components/Notification/notificationList.vue";
|
||||||
|
import {clientStore} from "@/stores/clientStore.js";
|
||||||
|
|
||||||
|
const store = clientStore()
|
||||||
|
fetch("/client/api/serverInformation").then(res => res.json()).then(res => store.serverInformation = res.data)
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -11,8 +11,7 @@ import {clientStore} from "@/stores/clientStore.js";
|
|||||||
const app = createApp(App)
|
const app = createApp(App)
|
||||||
|
|
||||||
app.use(createPinia())
|
app.use(createPinia())
|
||||||
const store = clientStore()
|
|
||||||
await fetch("/client/api/serverInformation").then(res => res.json()).then(res => store.serverInformation = res.data)
|
|
||||||
|
|
||||||
|
|
||||||
app.use(router)
|
app.use(router)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user