在确保代码在iOS11上可以正常运行后,发现在低版本iOS系统上,报错,无法正常显示。
Unexpected token '('. Expected a ':' following the property name 'mounted'.
在查找了些资料后,猜测是语法支持问题,编写的vue
代码为es6
的,而低版本上需要改为es2015
,这个可以在webpack
上配置下;
也可以在线转换,如:https://babeljs.io/repl/ ,将<script></script>
标签内容进行转换即可
亲测可行。