Hoy, cuando actualizo Vue a 2.x, muestra un error como este:
commons1.js:23487 [Vue warn]: Error compiling template: Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead. 6 | 划词翻译没有权限操作当前网页7 | </div> 8 | </section> | 9 | <st-box v-ref:st></st-box> | ^^^^^^^^^^^^^^^^^^^^^^^^^^ 10 | (found in <Root>) este es el código fuente de tpl.html :
<section class="text-center functions"> <div v-if="canInject"> <div role="button" @click="switchEnable" :title="'点击切换为'+(enabled?'禁':'启')+'用状态'">已对当前网站<span v-if="enabled">启用</span><span v-else>禁用</span></div> </div> <div v-else>划词翻译没有权限操作当前网页</div> </section> <st-box v-ref:st></st-box>¿Por qué pasó esto? ¿Qué debo hacer para solucionar este problema?
Como dijo el error, envuelva todo en un div, así que intente mover <st-box v-ref:st></st-box> dentro de <section block