Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created February 4, 2019 12:29
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/5066d448e7d95cf4f2944521cdc405f5 to your computer and use it in GitHub Desktop.
Save uno-de-piera/5066d448e7d95cf4f2944521cdc405f5 to your computer and use it in GitHub Desktop.
<template>
<div @click="hola">Pulsa aquí</div>
</template>
<script>
import MyMixin from './mixin';
export default {
name: 'HolaMundo',
mixins: [MyMixin]
}
</script>
export default {
data () {
return {
}
},
methods: {
hola () {
alert ('hola')
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment