mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
26 lines
347 B
Vue
26 lines
347 B
Vue
|
<template>
|
||
|
<div class="main">
|
||
|
<h1 class="title">{{ title }}</h1>
|
||
|
<slot></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
props: ['title']
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.main {
|
||
|
font: 15px Helvetica, Arial;
|
||
|
border: 1px solid #eee;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
.title {
|
||
|
font-size: 16px;
|
||
|
font-weight: bold;
|
||
|
margin: 10px 0
|
||
|
}
|
||
|
</style>
|