ant-design-vue/docs/vue/getting-started.en-US.md

112 lines
3.4 KiB
Markdown
Raw Normal View History

2018-04-09 14:49:58 +00:00
# Getting Started
2018-04-10 04:08:41 +00:00
Ant Design Vue is dedicated to providing a **good development experience** for programmers. Make sure that you had installed [Node.js](https://nodejs.org/)(> v6.5) correctly.
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
> Before delving into Ant Design Vue, a good knowledge base of [Vue](https://cn.vuejs.org/) and [JavaScript ES2015](http://babeljs.io/docs/learn-es2015/) is needed.
2018-04-09 14:49:58 +00:00
## Playground
The following CodeSandbox demo is the simplest use case, and it's also a good habit to fork this demo to provide a re-producible demo while reporting a bug.
2018-04-10 04:08:41 +00:00
- [![Vue Antd Template](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/2wpk21kzvr)
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
## Import vue-antd-ui
2018-04-09 14:49:58 +00:00
### 1. Installation
2018-04-10 04:08:41 +00:00
[vue-cli](https://github.com/vuejs/vue-cli)
2018-04-09 14:49:58 +00:00
```bash
2018-04-10 04:08:41 +00:00
$ npm install vue-cli -g
2018-04-09 14:49:58 +00:00
```
### 2. Create a New Project
A new project can be created using CLI tools.
```bash
2018-04-10 04:08:41 +00:00
$ vue init webpack antd-demo
2018-04-09 14:49:58 +00:00
```
### 3. Use antd's Components
2018-04-10 04:08:41 +00:00
```bash
$ npm i --save vue-antd-ui
2018-04-09 14:49:58 +00:00
```
2018-04-10 04:08:41 +00:00
```jsx
import Vue from 'vue'
import { Button, message } from 'vue-antd-ui'
import App from './App'
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
Vue.config.productionTip = false
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
Vue.component(Button.name, Button)
Vue.prototype.$message = message
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
/* eslint-disable no-new */
new Vue({
el: '#app',
components: { App },
template: '<App/>'
})
2018-04-09 14:49:58 +00:00
```
2018-04-10 04:08:41 +00:00
> All the components in antd are listed in the sidebar.
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
### 4. Component list
2018-04-09 14:49:58 +00:00
2018-04-10 04:08:41 +00:00
[Component list](https://github.com/vueComponent/ant-design/blob/master/site/components.js)
2018-04-09 14:49:58 +00:00
## Compatibility
2018-04-10 04:08:41 +00:00
Ant Design Vue supports all the modern browsers and IE9+.
2018-04-09 14:49:58 +00:00
You need to provide [es5-shim](https://github.com/es-shims/es5-shim) and [es6-shim](https://github.com/paulmillr/es6-shim) and other polyfills for IE browsers.
If you are using babel, we strongly recommend using [babel-polyfill](https://babeljs.io/docs/usage/polyfill/) and [babel-plugin-transform-runtime](https://babeljs.io/docs/plugins/transform-runtime/) instead of those two shims.
> Please avoid using both the babel and shim methods at the same time.
## Import on Demand
2018-04-10 04:08:41 +00:00
If you see logs like below screenshot, you might be importing all components by writing `import { Button } from 'vue-antd-ui';`. This will affect your app's network performance.
2018-04-09 14:49:58 +00:00
```
You are using a whole package of antd, please use https://www.npmjs.com/package/babel-plugin-import to reduce app bundle size.
```
> ![](https://zos.alipayobjects.com/rmsportal/GHIRszVcmjccgZRakJDQ.png)
However, we can import individual components on demand:
```jsx
2018-04-10 04:08:41 +00:00
import Button from 'vue-antd-ui/lib/button';
import 'vue-antd-ui/lib/button/style'; // or vue-antd-ui/lib/button/style/css for css format file
2018-04-09 14:49:58 +00:00
```
We strongly recommend using [babel-plugin-import](https://github.com/ant-design/babel-plugin-import), which can convert the following code to the 'antd/lib/xxx' way:
```jsx
2018-04-10 04:08:41 +00:00
import { Button } from 'vue-antd-ui';
2018-04-09 14:49:58 +00:00
```
And this plugin can load styles too, read [usage](https://github.com/ant-design/babel-plugin-import#usage) for more details.
2018-04-10 04:08:41 +00:00
> FYI, babel-plugin-import's `style` option will importing some global reset styles, don't use it if you don't need those styles. You can import styles manually via `import 'vue-antd-ui/dist/antd.css'` and override the global reset styles.
2018-04-09 14:49:58 +00:00
## Customization
2018-04-10 04:08:41 +00:00
- [Customize Theme](/ant-design/docs/vue/customize-theme)
2018-04-09 14:49:58 +00:00
- [Local Iconfont](https://github.com/ant-design/antd-init/tree/master/examples/local-iconfont)
## Tips
- You can use any `npm` modules.
2018-04-10 04:08:41 +00:00
- Although Vue's official recommended template to write components, JSX is a better choice for complex components.