Last active
April 5, 2018 16:38
-
-
Save mornir/80b51b966f5673f4ce7792bf346230f0 to your computer and use it in GitHub Desktop.
#vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template functional> | |
<div class="test"> | |
<h1>{{props.msg}}</h1> | |
<h2>Static content</h2> | |
<span v-for="n in 10">{{n}} </span> | |
<button @click="console.log('click', props.msg)"><slot></slot></button> | |
</div> | |
</template> | |
<script> | |
export default { | |
props: ['msg'], | |
} | |
</script> | |
<style scoped> | |
.test { | |
margin: 12; | |
} | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment