diff options
| author | taehoon <th.dev91@gmail.com> | 2019-10-21 20:53:34 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-10-21 20:53:34 -0400 |
| commit | d3a6c030f8a156cbb5a6b758c7a06c64fefe3d80 (patch) | |
| tree | e46db76588ea5bf7a75eb43c3c13af25a6a43488 /src/components/modal/modal.vue | |
| parent | 6084a5b6fe43bd14cf5d87a8f1623b338aad936e (diff) | |
clean up
Diffstat (limited to 'src/components/modal/modal.vue')
| -rw-r--r-- | src/components/modal/modal.vue | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/modal/modal.vue b/src/components/modal/modal.vue index 2e26d89b..cee24241 100644 --- a/src/components/modal/modal.vue +++ b/src/components/modal/modal.vue @@ -9,7 +9,16 @@ </div> </template> -<script src="./modal.js"></script> +<script> +export default { + props: { + isOpen: { + type: Boolean, + default: true + } + } +} +</script> <style lang="scss"> .modal-view { |
