vue-svg-pan-zoom/src/thumbnail.stories.vue

24 lines
563 B
Vue
Raw Normal View History

2018-01-09 23:57:25 +00:00
<template>
<SvgPanZoom
2018-01-23 00:58:23 +00:00
style="width: 880px; height: 720px; border:1px solid black; "
2018-01-09 23:57:25 +00:00
>
2018-01-10 00:17:30 +00:00
<RawTiger />
2018-01-23 00:58:23 +00:00
<RawTiger slot="thumbnail" class="thumbViewClass"
2018-01-10 18:01:32 +00:00
style="position: absolute; width: 20%; height: 30% bottom: 5px;
left: 5px; margin: 3px; padding: 3px;"
/>
2018-01-09 23:57:25 +00:00
</SvgPanZoom>
</template>
<script>
2018-01-23 00:58:23 +00:00
import { SvgPanZoom, SvgPanZoomThumbnail } from './index';
2018-01-10 00:17:30 +00:00
import RawTiger from './RawTiger.vue';
2018-01-09 23:57:25 +00:00
2018-01-10 18:01:32 +00:00
2018-01-09 23:57:25 +00:00
export default {
2018-01-10 18:01:32 +00:00
components: { SvgPanZoom, RawTiger, SvgPanZoomThumbnail },
2018-01-09 23:57:25 +00:00
};
</script>