mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 22:39:18 +01:00
17 lines
237 B
Vue
17 lines
237 B
Vue
<template lang="html">
|
|
<div>
|
|
<p>
|
|
<router-link to="/">Go back</router-link>
|
|
</p>
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App"
|
|
};
|
|
</script>
|
|
|
|
<style lang="css">
|
|
</style> |