<template> <div class="noWechat-page"> <img :src="noUrl"/> <div class="text-block"> <div class="title"> 请在微信中打开链接 </div> 您可以复制链接后,粘贴到微信任意对话框, <br> 或发送给微信中的任意好友, <br> 点击链接即可查看哦~ </div> </div> </template> <script> import noUrl from '../assets/no.png' export default { name: "noWechat", data(){ return { noUrl:noUrl } } } </script> <style scoped lang="less"> @import "../util/public"; .noWechat-page{ img{ width: 70%; } text-align: center; font-size: 18px; .text-block{ .title{ font-size: 30*@toVw; margin-bottom: 10*@toVw; } font-size: 14*@toVw; } } </style>