fix: correct path but not found

This commit is contained in:
oat_dev 2024-07-02 16:43:44 +07:00
parent 2e9dd8d7d4
commit 98e60a8929
2 changed files with 17 additions and 2 deletions

View file

@ -4,6 +4,12 @@ import { useRoute } from "vue-router";
export default defineComponent({
name: "Error404NotFound",
// props: {
// query: {
// type: Object,
// default: () => ({}),
// },
// },
setup() {
const route = useRoute();
const hasQueryParam = ref<boolean>(false);