You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
391 B

2 years ago
<template>
<div class="body">
<u-image class="bkg" :src="require('@/static/certificate-bkg.png')" mode="widthFix"></u-image>
<div class>
</div>
</div>
</template>
<script>
export default {
data() {
return {};
}
}
</script>
<style lang="scss">
.body {
position: relative;
}
.bkg {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
</style>