internet-content-provider-ecarx
v1.0.9
Published
## Project setup ``` npm install ```
Downloads
1
Readme
下载
npm i internet-content-provider-ecarx
引入
全局
// 1.0.8以前
import ICP from 'internet-content-provider-ecarx';
import 'internet-content-provider-ecarx/lib/internet-content-provider-ecarx.css';
Vue.use(ICP)
// 1.0.8及以后
import ICP from 'internet-content-provider-ecarx';
Vue.use(ICP)
局部
// 1.0.8以前
import ICP from 'internet-content-provider-ecarx';
import 'internet-content-provider-ecarx/lib/internet-content-provider-ecarx.css';
component: {
ICP,
}
// 1.0.8及以后
import ICP from 'internet-content-provider-ecarx';
component: {
ICP,
}
使用
<internet-content-provider-ecarx :row="1" :fixed="true" style="color:rgba(204,204,204,.5)"></internet-content-provider-ecarx>
<icp :row="1" :fixed="true" style="color:rgba(204,204,204,.5)">
<p>这是一串文字(可使用slot部分)</p>
</icp>
API
| 参数 | 说明 | 类型 | 默认值 | 版本 | | --------- | ------------------------------------------ | ------- | --------------------------- | ----- | | row | 行数,传入1或2,分别代表占一行或占2行 | number | 1 | | | fixed | 是否固定在底部,默认值是,若否则具有文档流 | Boolean | true | | | href | 备案验证地址 | String | 'https://beian.miit.gov.cn' | | | copyright | 备案验证地址的文字,通常为备案号 | String | '自己公司的备案号' | 1.0.8 |