Skip to content

Instantly share code, notes, and snippets.

@GiuMagnani
Last active October 17, 2017 00:49
Show Gist options
  • Save GiuMagnani/0dfc440adc75e7739e175e8031d2ce51 to your computer and use it in GitHub Desktop.
Save GiuMagnani/0dfc440adc75e7739e175e8031d2ce51 to your computer and use it in GitHub Desktop.
<template>
<other-component v-if="show"></other-component>
</template>
<script>
import OtherComponent from './components/BasicComponent';
export default {
name: 'basic-component',
components: {
'other-component': OtherComponent,
},
data() {
return {
show: true,
}
},
watch: {
},
computed: {
},
mounted() {
},
methods: {
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment