Created
November 13, 2017 18:43
-
-
Save acacha/891bae9e5497346cf6f4a48b9d522e5b to your computer and use it in GitHub Desktop.
Vue component template
This file contains 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> | |
<div> | |
{{#[[$data$]]#}} | |
</div> | |
</template> | |
<style> | |
</style> | |
<script> | |
export default { | |
name: '#[[$name$]]#', | |
data() { | |
return { | |
#[[$data$]]#: 'example' | |
} | |
}, | |
mounted() { | |
console.log('Mounted ok') | |
} | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment