Created
September 14, 2017 09:51
-
-
Save gearmobile/8da72e84d263c1f45c65ea6a0e80f56f to your computer and use it in GitHub Desktop.
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> | |
<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