摘要:
通过下面的方法可以读取 components 文件夹下的 vue 文件并放到 map 对象中 const context = require.context('./components/', false, /\.vue$/) const map = {} for (const key of cont 阅读全文
摘要:
用 <img> 来显示 svg 在 Chrome 下是没问题的,但在 Safari 下会出现显示模糊的问题,解决办法是用 <object> 来代替 <img> <object type="image/svg+xml" data="path/to/svg.svg" width="...px" heig 阅读全文