babel-plugin-transform-vue-jsx
babel-plugin-transform-vue-jsx copied to clipboard
babel plugin for vue 2.0 jsx
Hi So I just installed vue-jsx for the first time, and I'm trying to run the provided example code that demonstrates `h` auto-injection, just copy pasted it to my app.js...
v-show works fine with initialize value,but if I changed the value in the future, the element won't toggle visible status. here is my example code: ```jsx {this.queryForm.appName = appName}} onChange={this.initQuery}...
I'm using Flow with Vue and if I have a jsx template, I get an error. Here is the code: ```js // @flow export default { render (h: any) {...
Example setup ```jsx foo bar ``` ```jsx import {Component, Prop, Vue} from 'vue-property-decorator' @Component() export default class Gallery extends Vue { showItem = 0; itemsCount = 0; get show() {...
example url: https://github.com/iwangx/jsx-example/tree/transform-vue-jsx When I run `npm run serve` there will be an error.
```javascript //src/index.vue export default { functional:true, props:{ styObj:{ type:Object, default(){ return { width:'300px', height:'300px' } } }, title:{ type:String, default:'00' } }, render(h,context){ return( {context.props.title} ) } } ``` and...
Babel made a pretty massive (and rather unfortunate) change in that it's moved everything to scoped packages. This module should probably migrate over to v7 (and fix #112), but also...
This plugin requires a specific version of `babel-helper-vue-jsx-merge-props`. Thus, `babel-helper-vue-jsx-merge-props` should be listed as a `peerDependency` of this plugin.
Alright, I am getting the error `Uncaught ReferenceError: exports is not defined` in console after I was able to run my project via babel.config.js file by the below mentioned configuration...
Add missing `msg` prop, since equivalence is claimed.