12 lines
125 B
Vue
12 lines
125 B
Vue
<template>
|
|
<div id="app">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
<style>
|
|
#app {
|
|
padding: 0;
|
|
height: 100%;
|
|
}
|
|
</style>
|