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

25 lines
511 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; "
:onThumbnailShown="honk"
2018-01-09 23:57:25 +00:00
>
<RawTiger />
<RawTiger slot="thumbnail" />
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 },
methods: {
honk(){ console.log( "thumbnail was mounted!" ) }
},
2018-01-09 23:57:25 +00:00
};
</script>