mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-05 21:53:56 +00:00
55 lines
894 B
Vue
Executable File
55 lines
894 B
Vue
Executable File
<template lang="html">
|
|
<div class="main">
|
|
<Post title="My first blog post">
|
|
<VP>Hello there</VP>
|
|
<VP>This is an example of a componentized blog post</VP>
|
|
</Post>
|
|
|
|
<VHr />
|
|
|
|
<Post title="My second blog post">
|
|
<VP>Hello there</VP>
|
|
<VP>This is another example.</VP>
|
|
<VP>Wa-hoo!</VP>
|
|
</Post>
|
|
|
|
<VHr />
|
|
|
|
<Post title="The final blog post">
|
|
<VP>C'est la fin !</VP>
|
|
</Post>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import Post from '~/components/post'
|
|
import VP from '~/components/paragraph'
|
|
const VHr = { render: h => h('hr', { class: 'hr' }) }
|
|
|
|
export default {
|
|
components: {
|
|
Post,
|
|
VP,
|
|
VHr
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.main {
|
|
margin: auto;
|
|
max-width: 420px;
|
|
padding: 10px;
|
|
}
|
|
.hr {
|
|
width: 100px;
|
|
border-width: 0;
|
|
margin: 20px auto;
|
|
text-align: center;
|
|
}
|
|
hr::before {
|
|
content: '***';
|
|
color: #ccc;
|
|
}
|
|
</style>
|