Modal display and opening

This commit is contained in:
Jeffrey Biles
2020-03-29 14:31:09 -07:00
parent 93ad63af80
commit 4789f44bbe
2 changed files with 24 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
<template>
<div class="modal">
<div class="overlay"></div>
<div class="modal-card">
<slot />
</div>
</div>
</template>
<script>
export default {
}
</script>
<style scoped>
</style>