primevue-mirror/pages/image/index.vue

36 lines
947 B
Vue
Raw Normal View History

2022-09-09 20:41:18 +00:00
<template>
<div>
<div class="content-section introduction">
<div class="feature-intro">
<h1>Image</h1>
2022-12-08 12:26:57 +00:00
<p>Displays an image with preview and tranformation options. For multiple image, see <router-link to="galleria">Galleria</router-link>.</p>
2022-09-09 20:41:18 +00:00
</div>
<AppDemoActions />
</div>
<div class="content-section implementation">
<div class="card">
<h5>Basic</h5>
2022-12-08 12:26:57 +00:00
<Image src="demo/images/galleria/galleria1.jpg" alt="Image" width="250" />
2022-09-09 20:41:18 +00:00
<h5>Preview</h5>
2022-12-08 12:26:57 +00:00
<Image src="demo/images/galleria/galleria11.jpg" alt="Image" width="250" preview />
2022-09-09 20:41:18 +00:00
</div>
</div>
<ImageDoc />
</div>
</template>
<script>
import ImageDoc from './ImageDoc';
export default {
components: {
ImageDoc: ImageDoc
}
};
</script>
<style lang="scss" scoped></style>