Skip to content
On this page

picture-group-pro

基本使用




vue
<template>
    <kn-picture-group-pro :pictureList="list1"/>
<br/>
<kn-picture-group-pro :pictureList="list2"/>
<br/>
<kn-picture-group-pro :pictureList="list3"/>
<br/>
<kn-picture-group-pro :pictureList="list4"/>
</template>

<script setup>
const list1 = ["https://lihong.org.cn/knot-vue/img/logo.png"]

const list2 = ["https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png"]

const list3 = ["https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png"]

const list4 = ["https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png",
"https://lihong.org.cn/knot-vue/img/logo.png"]
</script>

Released under the MIT License.