23 lines
301 B
Vue
23 lines
301 B
Vue
<!-- webview.html -->
|
|
<template>
|
|
<view class="container">
|
|
<web-view src="https://gpxscs.cn"></web-view>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
url: "https://gpxscs.cn"
|
|
};
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
</style> |