Files
tiptap/demos/preview/index.vue
2021-08-25 11:52:20 +02:00

11 lines
250 B
Vue

<template>
<ul v-if="$route.path === '/'">
<li v-for="route in $router.options.routes" :key="route.path">
<router-link :to="route.path">
{{ route.path }}
</router-link>
</li>
</ul>
<router-view v-else />
</template>