This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/micromobility-navigation/src/App.vue

15 lines
351 B
Vue
Raw Normal View History

2023-07-14 15:07:00 +00:00
<template>
2023-07-15 08:03:08 +00:00
<router-view/>
<ul>
<li><router-link :to="{name: 'home'}">Home</router-link></li>
<!-- <li><router-link :to="{name: 'about'}">About</router-link></li> -->
<li><router-link :to="{name: 'setting'}">Setting</router-link></li>
</ul>
2023-07-14 15:07:00 +00:00
</template>
2023-07-15 08:03:08 +00:00
<script setup>
import {RouterLink, RouterView} from 'vue-router';
</script>