Skip to content

Instantly share code, notes, and snippets.

@vuejsdevelopers
Created July 10, 2017 06:15
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 vuejsdevelopers/3570910c785112e5254ce39402aa5bd7 to your computer and use it in GitHub Desktop.
Save vuejsdevelopers/3570910c785112e5254ce39402aa5bd7 to your computer and use it in GitHub Desktop.
3 Code Splitting Patterns For VueJS and Webpack - Snippet 05
<template>
<modal v-model="show" effect="fade">...</modal>
</template>
<script>
import Modal from 'vue-strap/src/Modal.vue';
export default {
props: ['show'],
components: {
Modal
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment