本文將一步步介紹如何使用React或anu創(chuàng)建 一個彈出層。

React時代,代碼都是要經(jīng)過編譯的,我們很多時間都耗在babel與webpack上。因此本文也介紹如何玩webpack與babel。

我們創(chuàng)建一個ui目錄,里面添加一個package.json。內(nèi)容如下,里面已經(jīng)是盡量減少babel插件的使用了。

{
  "name": "ui",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "RubyLouvre",
  "license": "ISC",
  "devDependencies": {
   
    "babel-core": "^6.24.1",
    "babel-loader": "^6.4.1",
    "babel-preset-es2015": "^6.24.1",
    "babel-preset-react": "^6.16.0",

    "webpack": "^2.2.1"
  },
  "dependencies": {
    "prop-types": "^15.5.10",
    "anujs": "^1.0.0"
  }}

如果你不想用anu,可以改成react與react-dom。

        		

網(wǎng)友評論