| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <div class="frame">
-
- <h1>页面找不到了</h1>
- <el-button @click="goIndex" type="success">返回首页</el-button>
- </div>
- </template>
- <script>
- export default {
- name: 'error',
- data() {
- return {
- }
- },
- created() {
- },
- methods: {
- // 回首页
- goIndex(){
- this.$router.replace({
- path: "/"
- });
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "@assets/css/404.scss";
- </style>
|