Skip to content

Instantly share code, notes, and snippets.

@Comandeer
Created July 7, 2018 20:40
Embed
What would you like to do?
Hello World single file component boilerplate
<template>
<div class="hello">
<p>Hello, world! My name is <slot></slot>.</p>
</div>
</template>
<style>
div {
background: red;
border-radius: 30px;
padding: 20px;
font-size: 20px;
text-align: center;
width: 300px;
margin: 0 auto;
}
</style>
<script></script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment