test #47

Merged
gtz217 merged 273 commits from test into master 2023-10-17 08:53:54 +08:00
2 changed files with 58 additions and 0 deletions
Showing only changes of commit 14a626b766 - Show all commits

View File

@ -0,0 +1,29 @@
<!--
filename: index.vue
author: liubin
date: 2023-08-04 14:44:58
description:
-->
<template>
<div class="app-container">
<h1>Recent 24 hours</h1>
</div>
</template>
<script>
export default {
name: "QualityRecentHours",
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
}
</script>
<style scoped lang="scss">
</style>

View File

@ -0,0 +1,29 @@
<!--
filename: index.vue
author: liubin
date: 2023-08-04 14:44:58
description:
-->
<template>
<div class="app-container">
<h1>Quality Statistics</h1>
</div>
</template>
<script>
export default {
name: "QualityStatistics",
components: {},
props: {},
data() {
return {}
},
computed: {},
methods: {},
}
</script>
<style scoped lang="scss">
</style>