Skip to content

Instantly share code, notes, and snippets.

@alxlion
Created May 31, 2020 16:34
Show Gist options
  • Save alxlion/4d53d178799845c72bf4dd5ce0920fb6 to your computer and use it in GitHub Desktop.
Save alxlion/4d53d178799845c72bf4dd5ce0920fb6 to your computer and use it in GitHub Desktop.
Vue Component Example 1
<template>
<div id="myComponent">
<Counter />
<span v-if="reading">Hello reader !</span>
</div>
</template>
<script>
import Counter from "@/components/Counter";
export default {
name: "myComponent",
components: {
Counter
}
}
</script>
<style>
#myDiv {
display: block;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment