Skip to content

Instantly share code, notes, and snippets.

@Comandeer
Created July 7, 2018 20:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Comandeer/ea21987c9f44a75777d4f46d7121ceaf to your computer and use it in GitHub Desktop.
Save Comandeer/ea21987c9f44a75777d4f46d7121ceaf to your computer and use it in GitHub Desktop.
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