mirror of
https://github.com/beak-insights/felicity-lims.git
synced 2025-02-23 08:23:00 +08:00
17 lines
382 B
TypeScript
17 lines
382 B
TypeScript
import { defineComponent } from 'vue';
|
|
import { RouterLink, RouterView } from 'vue-router';
|
|
import './index.css';
|
|
|
|
export default defineComponent({
|
|
name: 'App',
|
|
setup() {
|
|
return () => (
|
|
<>
|
|
<div id="nav">
|
|
<RouterLink to="/">Home</RouterLink> | <RouterLink to="/about">About</RouterLink>
|
|
</div>
|
|
<RouterView />
|
|
</>
|
|
);
|
|
},
|
|
});
|