vue-bulma / tabs

Tabs Component for Vue Bulma
MIT License
41 stars 38 forks source link

Why failed to install? #19

Open Yaojiale opened 7 years ago

Yaojiale commented 7 years ago

Installation:

├── UNMET PEER DEPENDENCY bulma@>=0.2
├── UNMET PEER DEPENDENCY sinon@1.17.7
└── vue-bulma-tabs@1.1.2

npm WARN karma-sinon-chai@1.3.1 requires a peer of sinon@^2.1.0 but none was installed.
npm WARN vue-bulma-tabs@1.1.2 requires a peer of bulma@>=0.2 but none was installed.

HTML

<tabs animation="slide" :only-fade="false">
    <tab-pane label="Pictures" v-for="(item, index) in category" :key="index" >{{item.name}}</tab-pane>
</tabs>

import { Tabs, TabPane } from 'vue-bulma-tabs'
export default {
    components: {
         Tabs, TabPane
    },
}

Use

@ ./~/vue-style-loader!./~/css-loader?{"minimize":false,"sourceMap":false}!./~/
vue-loader/lib/style-compiler?{"id":"data-v-ce47699c","scoped":false,"hasInlineC
onfig":true}!../~/sass-loader/lib/loader.js?{"sourceMap":false}!./~/vux-loader/s
rc/style-loader.js!./~/vue-loader/lib/selector.js?type=styles&index=0!./~/vue-bu
lma-tabs/src/Tabs.vue 4:14-383 13:3-17:5 14:22-391
 @ ./~/vue-bulma-tabs/src/Tabs.vue
 @ ./~/vue-bulma-tabs/src/index.js
 @ ./~/babel-loader/lib!./~/vux-loader/src/script-loader.js!./~/vue-loader/lib/s
elector.js?type=script&index=0!./src/views/activities/index.vue
 @ ./src/views/activities/index.vue
 @ ./src/routes/index.js
 @ ./src/main.js
 @ multi ./build/dev-client ./src/main.js

My Package

"scripts": {
    "dev": "node build/dev-server.js",
    "build": "node build/build.js",
    "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run",
    "e2e": "node test/e2e/runner.js",
    "test": "npm run unit && npm run e2e",
    "lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs"
  },
  "dependencies": {
    "axios": "^0.16.2",
    "fastclick": "^1.0.6",
    "vue": "^2.2.2",
    "vue-backtop": "0.0.3",
    "vue-bulma-tabs": "^1.1.2",
    "vue-router": "^2.2.0",
    "vue-scroller": "^2.2.2",
    "vue-wechat-title": "^2.0.4",
    "vue-ydui": "^0.8.0",
    "vuex": "^2.1.1",
    "vuex-i18n": "^1.3.1",
    "vux": "^2.2.1"
  },

Why failed to install?