Advertisement
Guest User

Untitled

a guest
Aug 19th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.43 KB | None | 0 0
  1. <template>
  2. <Page class="page">
  3. <WebView
  4. :src="gameURL"
  5. bounces="false"
  6. ref="myWebView"
  7. @loaded="onWeViewLoaded"
  8. />
  9. </Page>
  10. </template>
  11.  
  12. <script>
  13.  
  14. export default {
  15. computed: {
  16. message() {
  17. return "Hello from Opart 2019";
  18. }
  19. },
  20. data() {
  21. return {
  22. gameURL: "~/assets/www/index.html"
  23. }
  24. },
  25. created() {
  26. //console.log('Home - created')
  27. },
  28. mounted() {
  29. //console.log('Home - mounted')
  30. },
  31. methods: {
  32. onWeViewLoaded() {
  33. //console.log('onWeViewLoaded')
  34. //this.$refs.myWebView.setAttribute('scrollView.bounces','false');
  35. //console.dir(this.$refs.myWebView.src)
  36. }
  37. }
  38. };
  39. </script>
  40.  
  41. <style scoped lang="scss">
  42.  
  43. .page {
  44.  
  45. }
  46.  
  47. </style>
  48.  
  49. {"app_name":"flaynative","timestamp":"2019-08-18 19:39:21.92 -0700","app_version":"1.1.1","slice_uuid":"3405f8e2-670c-3bd9-9c98-012dfbc24c9f","adam_id":1476202200,"build_version":"1.1.1","bundleID":"com.flaboy.oldflay","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 12.4 (16G77)","incident_id":"5C7CF351-D0F6-45E2-878C-C3EB3D620C97","name":"flaynative"}
  50. Incident Identifier: 5C7CF351-D0F6-45E2-878C-C3EB3D620C97
  51. CrashReporter Key: 4966d39ab305f825353b3c62041a83ff7279f465
  52. Hardware Model: xxx
  53. Process: flaynative [726]
  54. Path: /private/var/containers/Bundle/Application/64AB551F-ECAA-4CF4-AF2C-9998EC6D4421/flaynative.app/flaynative
  55. Identifier: com.flaboy.oldflay
  56. Version: 1.1.1 (1.1.1)
  57. AppStoreTools: 10G3
  58. Code Type: ARM-64 (Native)
  59. Role: Foreground
  60. Parent Process: launchd [1]
  61. Coalition: com.flaboy.oldflay [679]
  62.  
  63.  
  64. Date/Time: 2019-08-18 19:39:21.8059 -0700
  65. Launch Time: 2019-08-18 19:39:20.0711 -0700
  66. OS Version: iPhone OS 12.4 (16G77)
  67. Baseband Version: 7.80.04
  68. Report Version: 104
  69.  
  70. Exception Type: EXC_CRASH (SIGABRT)
  71. Exception Codes: 0x0000000000000000, 0x0000000000000000
  72. Exception Note: EXC_CORPSE_NOTIFY
  73. Triggered by Thread: 0
  74.  
  75. Application Specific Information:
  76. abort() called
  77.  
  78. Last Exception Backtrace:
  79. (0x1828a598c 0x181a7e9f8 0x100b8248c 0x100bc2028 0x100497420 0x1822f58e0)
  80.  
  81. Thread 0 name: Dispatch queue: com.apple.main-thread
  82. Thread 0 Crashed:
  83. 0 libsystem_kernel.dylib 0x00000001824420dc 0x18241f000 + 143580
  84. 1 libsystem_pthread.dylib 0x00000001824bb094 0x1824b9000 + 8340
  85. 2 libsystem_c.dylib 0x000000018239aea8 0x182340000 + 372392
  86. 3 libc++abi.dylib 0x0000000181a67788 0x181a66000 + 6024
  87. 4 libc++abi.dylib 0x0000000181a67934 0x181a66000 + 6452
  88. 5 libobjc.A.dylib 0x0000000181a7ee00 0x181a79000 + 24064
  89. 6 libc++abi.dylib 0x0000000181a73838 0x181a66000 + 55352
  90. 7 libc++abi.dylib 0x0000000181a731a8 0x181a66000 + 53672
  91. 8 libc++abi.dylib 0x0000000181a73168 0x181a66000 + 53608
  92. 9 libobjc.A.dylib 0x0000000181a7eb3c 0x181a79000 + 23356
  93. 10 NativeScript 0x0000000100b8248c 0x100b3c000 + 287884
  94. 11 NativeScript 0x0000000100bc2028 0x100b3c000 + 548904
  95. 12 flaynative 0x0000000100497420 0x100490000 + 29728
  96. 13 libdyld.dylib 0x00000001822f58e0 0x1822f4000 + 6368
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement