24 lines
238 B
Vue
Raw Normal View History

2024-12-06 22:42:03 +08:00
<template>
<div class="dashboard-container">
2025-01-10 23:17:10 +08:00
dashboard
2024-12-06 22:42:03 +08:00
</div>
</template>
<script>
export default {
name: 'Dashboard',
data() {
return {
2025-01-10 23:04:00 +08:00
}
},
2025-01-10 23:17:10 +08:00
mounted(){
2025-01-11 16:02:31 +08:00
2025-01-10 23:17:10 +08:00
},
methods: {
2025-01-11 16:02:31 +08:00
2025-01-10 23:04:00 +08:00
}
}
2025-01-10 23:17:10 +08:00
</script>
2025-01-10 23:04:00 +08:00