mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-19 03:46:38 +08:00
24 lines
239 B
Vue
24 lines
239 B
Vue
<!-- home -->
|
|
<template>
|
|
<div class="index-container">
|
|
<h1>404!</h1>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
list: []
|
|
};
|
|
},
|
|
|
|
computed: {},
|
|
|
|
mounted() {
|
|
},
|
|
|
|
methods: {}
|
|
};
|
|
</script>
|