APP中嵌套h5页面

  1. 新建 Consignment.vue

  2. 嵌套 web-view

<template>
	<!-- 嵌套商城 -->
	<view class="Consignment">
		<!-- 需要嵌套的H5页面路径 -->	
		<web-view src="http:............"></web-view>
	</view>
</template>

<script>
	export default {
      
      
		data() {
      
      
			return {
      
      }
		},
	}
</script>

<style lang='scss' scoped>

</style>
  1. 上图
    4
    在这里插入图片描述

  2. 搞定ok !!!!!!!!!!

猜你喜欢

转载自blog.csdn.net/weixin_45563734/article/details/127120242