Skip to content

Instantly share code, notes, and snippets.

@BojanKomazec
Created September 6, 2018 15:00
Show Gist options
  • Save BojanKomazec/b7ea57d37f231901c5f0025ab60bee1b to your computer and use it in GitHub Desktop.
Save BojanKomazec/b7ea57d37f231901c5f0025ab60bee1b to your computer and use it in GitHub Desktop.
<template>
<div class="hello">
<h1>{{ msg }}</h1>
...
</div>
</template>
<script>
export default {
name: "HelloWorld",
props: {
msg: String
}
};
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
...
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment