Weex
まずは、 platforms/android/app/build.gradleの applicationId "com.weex.app"を修正。 https://alligator.io/vuejs/getting-started-vue-weex/ https://docs.oracle.com/cd/E19416-01/820-5959/ggezu/index.html これ見た。 keytool -genkey -v -keystore …
https://github.com/alibaba/weex-ui/blob/master/packages/wxc-button/type.js こんな感じにインポートして import { STYLE_MAP, TEXT_STYLE_MAP } from "weex-ui/packages/wxc-button/type"; こうする。 cssではなくてdata()での変数指定。 data() { retur…
WeexでUIを使うにはweex-uiを使うのがいい。 alibaba.github.io インストール -Dは--save-devの略 npm i babel-preset-stage-0 babel-plugin-component -D npm i weex-ui -S or yarn add --dev yarn add babel-preset-stage-0 yarn add --dev babel-plugin-c…
langへpugって書くだけ。 <template lang="pug"> div image.logo(style='width:500px;height:500px', :src='logo') text.greeting Big Numbers div(@click="jump('/game')") text.btn Start div(@click="jump('/setting')") text.btn Settings </template> でもその前に yarn add pugで入れる…
リストレンダリング — Vue.js htmlで <ul id="example-2"> <li v-for="(item, index) in items"> {{ parentMessage }} - {{ index }} - {{ item.message }} </li> </ul> jsは var example2 = new Vue({ el: '#example-2', data: { parentMessage: 'Parent', items: [ { message: 'Foo' }, { message: 'Bar' } ] } }) これだと…
GitHub - apuravchauhan/weex-base: Tutorial code to go with the below tutorial: https://medium.com/@apuravchauhan/weex-vs-react-native-from-scratch-2018-32ae41d1effc git clone https://github.com/apuravchauhan/weex-base cd apurav-app npm ins…
src/HelloWorld.tsxを使った。 cssで背景色でボタンを擬似的に。 普通のクリックと長押しがある。 このサンプルではログとトースト表示。 @appear @disappearはなんか機能しないね。 <template> <div> <div class="box" @click="onclick" @longpress="onlongpress" @appear="onappear" @disappear="ondisappear"> <text class="box-text">test</text> </div> </div> </template> <script> co…
結局はVue.jsなのでsrc/router.jsこれを利用。 qiita.com
TypeScript zhuanlan.zhihu.com vue-class-component / typescript support? · Issue #3092 · alibaba/weex · GitHub この中国語読めば使える? iOS起動のエラー Error: You should config `CodeSign` and `Profile` in the `ios.config.json` We suggest th…