摘要:
Vue中使用v-for出现错误提示: [vue/require-v-for-key] Elements in iteration expect to have 'v-bind:key' directives.eslint-plugin-vue 解决思路: 1、v-for 后添加:key="item" 阅读全文
摘要:
在开发Vue的组件时,文本的换行符(\n)却无法正常换行,而是被替换为空格。 解决方法 我们可以利用 css 样式中的 white-space,把文本区域的样式设置为: white-space: pre-line;, 就可以很方便的解决。 注意不要使用 white-space: pre-wrap;, 阅读全文