sl-vue2-template
v0.0.0-beta58
Published
支持 ie11 的 ui 组件
Downloads
11
Maintainers
Readme
vite2.8 + vue2.7.14 + ts
支持 ie11 的 ui 组件
引入
npm i sl-vue2-template
::: warning 警告
:zap: 你可能会额外遇到 sass 的错误,所以你需要引入 sass
npm install sass
:::
::: warning 兼容 ie11 须知
需要先引入 babel-polyfill
npm install --save-dev babel-polyfill
import "babel-polyfill";
:::
::: danger vue 文件使用须知
.vue 使用可能会遇到<Button.Primary>不存在的问题,这是因为 vue 文件不能这样使用组件 请按下面注入组件
import { Button } form 'sl-vue2-template'
export default {
components: {
ButtonPrimary: Button.Primary
}
}
:::