mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
20 lines
228 B
Vue
20 lines
228 B
Vue
|
<template>
|
||
|
<div class="top">
|
||
|
Main Top content!
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: 'MainTop'
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.top {
|
||
|
margin: auto;
|
||
|
max-width: 420px;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
</style>
|