yarn運行antD-pro-vue

如何快速上手一個前端框架,那就是下個開源後臺軟件寫個curd,先作再想更容易上手前端

克隆項目到本地:

$ git clone https://github.com/iczer/vue-antd-admin.gitvue

我這沒裝yarn,因此先下載。先用了node

brew install yarn
#報錯,就用另外一個node的編譯工具來下
npm install yarn -g

安裝依賴:git

$ yarn installgithub

啓動shell

$ yarn startnpm

以開發者身份運行json

$yarn run serve 前端框架

輸入網址就出來了。 antd

擴展yarn

  1. yarn是一個相似npm的一個包管理器,也是經過package.json配置文件進行管理
#json配置
{
  "name": "my-new-project",
  "version": "1.0.0",
  "description": "My New Project description.",
  "main": "index.js",
  "repository": {
    "url": "https://example.com/your-username/my-new-project",
    "type": "git"
  },
  "author": "Your Name <you@example.com>",
  "license": "MIT"
}
  1. 常見命令
#初始化項目
yarn init
#安裝項目的所有依賴
yarn install
  1. 關於ant-design-vue的組建和ui的使用方式能夠看官網 https://vuecomponent.github.io/ant-design-vue/docs/vue/getting-started-cn/

  2. 怎樣使用antDpro快速curd

相關文章
相關標籤/搜索