mirror of
https://github.com/amir20/dozzle.git
synced 2026-01-03 19:45:01 +01:00
20 lines
235 B
Vue
20 lines
235 B
Vue
<template lang="html">
|
|
<router-view></router-view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "App"
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.section.is-fullwidth {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
body {
|
|
font-family: "Roboto", sans-serif;
|
|
}
|
|
</style>
|