fix header in 404 page

This commit is contained in:
chiayin
2023-02-01 10:13:06 +08:00
parent d5dd6194f5
commit 6f40673e22
3 changed files with 1 additions and 12 deletions

View File

@@ -42,7 +42,7 @@ export default {
IconMember IconMember
}, },
mounted() { mounted() {
this.$route.name === 'Login' ? this.showMember = false : this.showMember = true; this.$route.name === 'Login' || this.$route.name === 'NotFound404' ? this.showMember = false : this.showMember = true;
} }
} }

View File

@@ -1,8 +0,0 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx,vue}"],
theme: {
extend: {},
},
plugins: [],
};

View File

@@ -25,8 +25,5 @@ module.exports = {
'3xl': ['30px', 1], '3xl': ['30px', 1],
'4xl': ['36px', 1], '4xl': ['36px', 1],
}, },
extend: {
}
}, },
plugins: [],
}; };