vue_error_Runtime directive used on component with non-element root node. The directives will not function as intended

发布时间 2023-09-29 22:37:02作者: Steperouge
  • 翻译: '运行时指令,用于非元素根节点的组件。这些指令将无法发挥预期的作用';
  • 这个错误发生在我将v-show放在自定义组件上时, 我想是因为自定义组件在渲染时会被自定义组件的内部元素替换, 因此设置是无效的
  • 解决: 在自定义组件外加一个div, 把v-show写在div上