Show opening method on hover. Allow items to be opened in an iframe

This commit is contained in:
Alicia Sykes
2021-04-06 15:47:34 +01:00
parent 8ddc2506ac
commit 7fd36d9ec6
14 changed files with 9255 additions and 37157 deletions
+30
View File
@@ -0,0 +1,30 @@
<template>
<modal name="iframe-modal" :resizable="true"
:adaptive="true" width="80%" height="80%">
<iframe :src="url" class="frame" />
</modal>
</template>
<script>
export default {
name: 'IframeModal',
props: {
url: String,
},
methods: {
show: function show() {
this.$modal.show('iframe-modal');
},
},
};
</script>
<style scoped lang="scss">
.frame {
width: 100%;
height: 100%;
border: none;
}
</style>