import { defineComponent } from 'vue'; import { IBlockData, SbMain, } from '@schlechtenburg/core'; export default defineComponent({ setup() { const route = useRoute(); const path = route.path; console.log(path); return () => (
Path {path} {/**/}
); }, });