vue-framework-for-Apache-Weex icon indicating copy to clipboard operation
vue-framework-for-Apache-Weex copied to clipboard

This repos is a third party work, and is not developed nor maintained by Apache Weex.

Results 10 vue-framework-for-Apache-Weex issues
Sort by recently updated
recently updated
newest added

In Weex you can write code with Vue, a progressive framework for building user interfaces. Also you can find some tools and resources by it. So this introduction assumes you...

我是做native端的开发,想做多个页面之间的跳转,我发现weex的组件navigator的跳转页面都是js,我想应该可以给对应的vue文件生成对应页面的js文件,但是生成多个js文件需要怎么配置webpack才行能,不太懂,希望得到指导!

问题详情: 父组件往子组件传递数据, ![vo9k xwvj7 arza4 ot5ix9](https://user-images.githubusercontent.com/20083236/35376053-68928d20-01e4-11e8-8bd8-e528611a709b.png) ![r3 2 4 2_ woor lx_x y](https://user-images.githubusercontent.com/20083236/35376221-f84bfa78-01e4-11e8-8c21-80abc65971ba.png) 子组件接受数据并定义一个默认值: ![5yjje o u7 9 ff i wk4k](https://user-images.githubusercontent.com/20083236/35376230-04350a28-01e5-11e8-9031-2e2485909a66.png) 当点击按钮时,删除该数组的任一值 ![_ vt9g v n at_6ko hew](https://user-images.githubusercontent.com/20083236/35376267-34c5a3d2-01e5-11e8-8bb1-59d4a2ddf2df.png) 数据正常发生了改变,但是却报错: ![s1s...

Hi, Would like to know if there will be formal support for a barcode scanner implementation in weex? Otherwise an official component or block with quagga.js or cordova api call?...

Milestone 1 - [x] 补全测试 (Write test for Weex platform) #10 - [x] 仓库合并 (Merge this repo into vue main repo and re-fork it here) - [x] 合并已有的提交 (Merge all...

See the two examples below, they are actually the same program but writen in different syntax. + [Using Weex (`.we`)](http://dotwe.org/weex/387e3b0261103bbb431b99bd3a8c7240) + [Using Vue](http://dotwe.org/vue/b61eda4ad7ddd80927d199904fe94c1e) They both rendered a list, and set...

In `vue-loader` we hope to: 1. build weex js bundle through `app.vue?platform=weex` 2. automatically call `new Vue({ el: '#app', ...options })` through `app.vue?el=#app` in order to delete entry js file...

So `eventHub` doesn't work. Maybe something wrong with it.

`` * [x] basic support * [ ] hack `animate()`, * [ ] `transition` css `` * [ ] use transform when enter/leave * [ ] use `getBoundingClientRect()`

enhancement

``` Weex: class="btn btn-{{type}} btn-sz-{{size}}" Vue: :class="['btn', 'btn-' + type, 'btn-sz-' + size]" Weex: if="{{!rightItemSrc}}" Vue: v-if="!rightItemSrc" Weex: repeat="{{item in tabItems}}" Vue: v-for="item in tabItems" Weex: onclick="onclickrightitem" Vue: @click="onclickrightitem" Weex:...