mintor.vue 287 B

12345678910111213141516171819202122
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script>
  5. export default {
  6. data() {
  7. return {
  8. url:"",
  9. }
  10. },
  11. onShow(){
  12. this.url = uni.getStorageSync("mintor")
  13. }
  14. }
  15. </script>
  16. <style>
  17. </style>