index.vue 212 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 <template> <web-view :src="webViewUrl"></web-view> </template> <script> export default { data() { return { webViewUrl: "https://yunwei.vionyun.com/wap/" // 确保这里正确 }; } }; </script>