21 lines
490 B
Vue
21 lines
490 B
Vue
<template>
|
|
<SvgPanZoom
|
|
style="width: 300px; height: 500px; border:1px solid black; "
|
|
>
|
|
<embed id="mainView" type="image/svg+xml" src="tiger.svg"/>
|
|
<SvgPanZoomThumbnail>
|
|
<embed id="mainView" type="image/svg+xml" src="tiger.svg"/>
|
|
</SvgPanZoomThumbnail>
|
|
</SvgPanZoom>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
import { SvgPanZoom, SvgPanZoomThumbnail } from './index';
|
|
|
|
export default {
|
|
components: { SvgPanZoom, SvgPanZoomThumbnail },
|
|
};
|
|
|
|
</script>
|