Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created January 27, 2019 17:27
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 uno-de-piera/61e8fc4d9576996bcdef86c6fc0fcdd4 to your computer and use it in GitHub Desktop.
Save uno-de-piera/61e8fc4d9576996bcdef86c6fc0fcdd4 to your computer and use it in GitHub Desktop.
<template lang='pug'>
div.container
div Vuejs con Pug en {{ name }}
hello-world(msg="Hola Mundo", :author="name", @hello="sayHello")
</template>
<script>
import HelloWorld from '../components/HelloWorld'
export default {
name: 'home',
components: {
HelloWorld
},
data () {
return {
name: 'Cursosdesarrolloweb'
}
},
methods: {
sayHello () {
alert('Helloooooo!')
}
}
}
</script>
<template lang='pug'>
.div.hello
h1(@click="$emit('hello')") {{ msg }} - {{ author }}
</div>
</template>
<script>
export default {
name: 'HelloWorld',
props: {
msg: String,
author: String
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment