salix-front/src/App.vue

12 lines
150 B
Vue
Raw Normal View History

2022-03-24 12:33:14 +00:00
<template>
<router-view />
</template>
<script>
import { defineComponent } from 'vue'
export default defineComponent({
name: 'App'
})
</script>