gctGenerator/site/.vuepress/components/Preview.vue

40 lines
794 B
Vue
Raw Normal View History

2022-10-07 23:02:40 +09:00
<template>
<div class="preview-root">
<div class="preview-ctn">
<PreviewString :config="config.qft" :version="_version" />
<PreviewString v-for="mdp,i in (config.CustomizedDisplay || [])"
:key="'mdp'+i" :config="mdp" :version="_version" />
<PreviewString :config="config.PatternSelector" :version="_version" />
2022-10-07 23:02:40 +09:00
</div>
</div>
</template>
<script>
export default {
props: {
config: {type: Object},
},
computed: {
_version() {
const {_version} = this.config
return _version;
},
2022-10-07 23:02:40 +09:00
},
}
</script>
<style scoped>
.preview-root {
2022-10-07 23:02:40 +09:00
position: relative;
width: 600px;
height: 448px;
background: url(/img/preview/background.png);
padding: 0;
overflow: hidden;
}
.preview-ctn {
2022-10-07 23:02:40 +09:00
position: absolute;
top: -16px;
}
</style>