Sharkey/src/client/components/page/page.canvas.vue

37 lines
536 B
Vue
Raw Normal View History

2020-04-15 18:39:21 +03:00
<template>
2020-04-18 12:33:45 +03:00
<div class="ysrxegms">
<canvas ref="canvas" :width="value.width" :height="value.height"/>
2020-04-15 18:39:21 +03:00
</div>
</template>
<script lang="ts">
import Vue from 'vue';
export default Vue.extend({
props: {
value: {
required: true
},
2020-04-20 15:35:27 +03:00
hpml: {
2020-04-15 18:39:21 +03:00
required: true
}
},
mounted() {
2020-04-20 15:35:27 +03:00
this.hpml.registerCanvas(this.value.name, this.$refs.canvas);
2020-04-15 18:39:21 +03:00
}
});
</script>
<style lang="scss" scoped>
.ysrxegms {
2020-04-18 12:33:45 +03:00
display: inline-block;
vertical-align: bottom;
2020-04-19 10:15:24 +03:00
overflow: auto;
max-width: 100%;
2020-04-18 12:33:45 +03:00
> canvas {
display: block;
}
2020-04-15 18:39:21 +03:00
}
</style>