mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 13:50:31 +00:00
20 lines
203 B
Vue
20 lines
203 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'App',
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import 'style/style.scss';
|
|
|
|
body{
|
|
margin: 0;
|
|
}
|
|
</style>
|