zsmjhtn commented on issue #2391: [Android]Unexpected behavior when I control v-if where weex version is 0.18 URL: https://github.com/apache/incubator-weex/issues/2391#issuecomment-494250691 main Page: `<template> <com :dto="dto" :current-month="3"></com> </template><script> const _ = require("./../async/_Vue.js"); const ENHANCE = require("../enhance-vue"); const NATIVE = require('../module/wjsNative.js') export default { components: { com: require("../components-vue/test-com.vue") }, data: () => ({ dto: {} }), created() { ENHANCE.enhance(this); NATIVE.stopLoading() this.$initDate = _.create() .fetch("/app/wealthbill/getCustProfitBill", () => ({ month: 4, year: 2019 })) .toastOnCode("all") .map(rsp => ({ dto: rsp })) .assign(this) .invoke(); } }; </script>`
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
