Play and demonstrate your Vue components, inspired by react-storybook.
Play it in seconds
The only thing you need to install is vue-play-cli
:
$ npm install -g vue-play-cli
Then, let's play with your Button component, create a play.js
in the root directory of your project (anywhere else is ok):
import {play} from 'vue-play'
import MyButton from './components/MyButton.vue'
play({
Button: {
'with text'(h) {
return <MyButton on-click={this.$log('hi')}>Hello Play!</MyButton>
},
'with rounded border'(h) {
return <MyButton rounded={true}>I'm rouned!</MyButton>
}
}
})
Run the play script with command vue-play
, and see it in action! (code)
$ ~/my-button-component vue-play
> play at http://localhost:5000
Share the play spot with your team mates!
$ vue-play -p
$ gh-pages -d ./play-dist
Advanced
States and methods
How do I write play script so that my component can call a method or update a state? Well, you can simply:
play({
Button: {
'with text': {
data() {
return {}
},
methods: {
handleClick() {}
},
render(h) {
return <MyButton on-click={this.handleClick}>text</MyButton>
}
}
}
})
Play config
In most cases you only need to update babel, postcss or loaders, so here's the API for that:
module.exports = {
browsers: [],
babel: {},
postcss: [],
loaders: [],
}
Run vue-play -c
will auto load this file, and -c /path/to/custom/file
to change location.
Use your own webpack config file
Check out the default webpack config, in brief, you can play with:
babel: es2015 stage-2
postcss: postcss-nested postcsss-simple-vars
image and fonts: file-loader
Provide your own webpack.config.js and pass the path to it in --webpack-config
option. In this way you will need to install loaders and plugins you used in your project, since the default config was totally overridden.
Badges
package | version |
---|
vue-play | |
vue-play-cli | |
Development
$ cd vue-play
$ npm link
$ cd packages/vue-play-cli
$ npm link vue-play
$ npm link
$ npm run build
$ vue-play example.js
License
MIT © EGOIST