Skip to content

Instantly share code, notes, and snippets.

@mornir
Last active April 5, 2018 16:38
Show Gist options
  • Save mornir/80b51b966f5673f4ce7792bf346230f0 to your computer and use it in GitHub Desktop.
Save mornir/80b51b966f5673f4ce7792bf346230f0 to your computer and use it in GitHub Desktop.
#vue
<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