mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-22 01:11:40 +00:00
23 lines
312 B
Vue
23 lines
312 B
Vue
<template>
|
|
<Layout id="main-layout">
|
|
<Content id="main-content">
|
|
<router-view></router-view>
|
|
</Content>
|
|
</Layout>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Settings',
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |