Nuxt/examples/nested-components/components/paragraph.vue
Sébastien Chopin 8ab135af55 Prototype 0.1.0 working
Alpha 0.1.0
2016-11-07 02:34:58 +01:00

13 lines
145 B
Vue
Executable File

<template>
<p class="p">
<slot></slot>
</p>
</template>
<style scoped>
.p {
font: 13px Helvetica, Arial;
margin: 10px 0;
}
</style>