serviceAgreement.vue 238 B

1234567891011121314151617181920212223
  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. onLoad: function(option) {
  12. this.url = option.url;
  13. },
  14. methods: {}
  15. }
  16. </script>
  17. <style>
  18. </style>