Images are still pictures in the project. After being packaged into app, how do you save one of these pictures to your phone in app? I see Sina Weibo Baidu Tieba these APP are all click on the picture quality pop-up this picture long press the picture to save how to achieve this effect
<template>
<div>
<div id="product">
<img :src="item" v-for="(item, index) in list" :key=index class="img-responsive">
</div>
</div>
</template>
<script>
export default {
name: "Product",
data () {
return {
list: [
"static/pic/product/001.jpg",
"static/pic/product/002.jpg",
"static/pic/product/003.jpg",
"static/pic/product/004.jpg"
]
}
}
}
</script>
<style scoped>
</style>