32 lines
727 B
Vue
32 lines
727 B
Vue
<!--
|
|
* @Author: cclu 1106109051@qq.com
|
|
* @Date: 2025-03-27 16:06:32
|
|
* @LastEditors: cclu 1106109051@qq.com
|
|
* @LastEditTime: 2025-03-27 16:09:06
|
|
* @FilePath: \caiyunyi\pages\highwayHeadlines\minprogress.vue
|
|
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
-->
|
|
<template>
|
|
<div class="main">
|
|
<web-view
|
|
id="myWebView"
|
|
ref="myWebView"
|
|
src="https://mp.weixin.qq.com/s/deGzF0cWoG1kXUAd1eUGqQ"
|
|
></web-view>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {};
|
|
},
|
|
};
|
|
</script>
|
|
<style scoped lang="less">
|
|
.main {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
</style>
|