@kaipeng/article
v1.1.23
Published
文章显示组件
Downloads
93
Readme
文章呈现组件
安装
npm i @kaipeng/article -S
使用
import Article from '@kaipeng/article'
import '@kaipeng/article/lib/main.min.css'
const App = () => (
<Article data={data} />
);
render(<App />, document.getElementById("root"));
参数说明
| 参数 | 说明 | 默认值 | | ------------ | ------------ | ------------ | | data | 呈现的数据 | null | | titleExtra | title 上额外的元素 | null |
开发
clone 项目
安装依赖
npm i
npm start
- 开发目录:
/src
- 调试
开发中的调试:
example/app.js
中组件的引入方式改用: import Article from "../src";
更新前的调试:
npm link
npm link @kaipeng/article
example/app.js
中组件的引入方式改用:
import Article from 'article'
import 'article/lib/main.min.css'