|
|
@@ -0,0 +1,15 @@
|
|
|
+<template>
|
|
|
+ <div>
|
|
|
+ <h1>Demo2</h1>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts" setup>
|
|
|
+import { ref, reactive } from "vue";
|
|
|
+import { useRoute } from "vue-router";
|
|
|
+const route = useRoute();
|
|
|
+console.log(route, "demo2");
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+</style>
|