25 lines
270 B
Vue
25 lines
270 B
Vue
|
<template>
|
||
|
<main>
|
||
|
<nuxt/>
|
||
|
</main>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
body {
|
||
|
padding: 50px;
|
||
|
font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #00B7FF;
|
||
|
}
|
||
|
|
||
|
table {
|
||
|
text-align: left;
|
||
|
}
|
||
|
|
||
|
td {
|
||
|
padding: 0 10 0 10;
|
||
|
}
|
||
|
</style>
|