1234567891011121314151617181920212223242526272829303132333435 |
- <template>
- <view>
- <web-view @message="postMessage" :src="url"></web-view>
- </view>
- </template>
- <script>
-
- export default {
-
- data() {
- return {
- url: "http://localhost:8080",
- }
- },
-
- methods: {
- wwwc(){
- uni.showToast({
- title: '成功提示',
-
- icon: 'success',
-
- duration: 2000
- })
- }
- }
- }
- </script>
- <style scoped>
- </style>
|