Created
September 13, 2020 15:09
-
-
Save AnandShiva/6de517cf74bb21978bc4a8172d0d0c77 to your computer and use it in GitHub Desktop.
Vue Extension medium example - Index.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> | |
<div id="extension_content"> | |
Vue Content | |
</div> | |
</template> | |
<script> | |
export default { | |
created(){ | |
console.log('Vue Component Initialised') | |
} | |
</script> | |
<style> | |
</style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment