-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d78763c
commit 0ea7942
Showing
382 changed files
with
2,995 additions
and
3,214 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
import { WxCPTComp } from "@areslabs/wx-react" | ||
Component(WxCPTComp()) | ||
import CompMySelf from "./MyChildComp.comp" | ||
import { WxNormalComp } from "@areslabs/wx-react" | ||
import RNApp from "../../src/index.js" | ||
|
||
Component(WxNormalComp(CompMySelf, RNApp)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<import src="./MyChildCompTemplate.wxml"></import> | ||
<template wx:if="{{_r && _r.tempName}}" is="{{_r.tempName}}" data="{{..._r}}"></template> | ||
|
||
<import src="./MyChildCompTemplate.wxml"/> | ||
<template wx:if="{{(_r && _r.tempName) || (R && R.tempName)}}" is="{{_r.tempName || R.tempName}}" data="{{...(_r || R)}}"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
import { WxCPTComp } from "@areslabs/wx-react" | ||
Component(WxCPTComp()) | ||
import CompMySelf from "./MyContext.comp" | ||
import { WxNormalComp } from "@areslabs/wx-react" | ||
import RNApp from "../../src/index.js" | ||
|
||
Component(WxNormalComp(CompMySelf, RNApp)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<import src="./MyContextTemplate.wxml"></import> | ||
<template wx:if="{{_r && _r.tempName}}" is="{{_r.tempName}}" data="{{..._r}}"></template> | ||
|
||
<import src="./MyContextTemplate.wxml"/> | ||
<template wx:if="{{(_r && _r.tempName) || (R && R.tempName)}}" is="{{_r.tempName || R.tempName}}" data="{{...(_r || R)}}"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<import src="./MyForceUpdateTemplate.wxml"></import> | ||
<template wx:if="{{_r && _r.tempName}}" is="{{_r.tempName}}" data="{{..._r}}"></template> | ||
|
||
<import src="./MyForceUpdateTemplate.wxml"/> | ||
<template wx:if="{{(_r && _r.tempName) || (R && R.tempName)}}" is="{{_r.tempName || R.tempName}}" data="{{...(_r || R)}}"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
import { WxCPTComp } from "@areslabs/wx-react" | ||
Component(WxCPTComp()) | ||
import CompMySelf from "./MyForceUpdateInner.comp" | ||
import { WxNormalComp } from "@areslabs/wx-react" | ||
import RNApp from "../../src/index.js" | ||
|
||
Component(WxNormalComp(CompMySelf, RNApp)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<import src="./MyForceUpdateInnerTemplate.wxml"></import> | ||
<template wx:if="{{_r && _r.tempName}}" is="{{_r.tempName}}" data="{{..._r}}"></template> | ||
|
||
<import src="./MyForceUpdateInnerTemplate.wxml"/> | ||
<template wx:if="{{(_r && _r.tempName) || (R && R.tempName)}}" is="{{_r.tempName || R.tempName}}" data="{{...(_r || R)}}"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
import { WxCPTComp } from "@areslabs/wx-react" | ||
Component(WxCPTComp()) | ||
import CompMySelf from "./MyForceUpdateInnerInner.comp" | ||
import { WxNormalComp } from "@areslabs/wx-react" | ||
import RNApp from "../../src/index.js" | ||
|
||
Component(WxNormalComp(CompMySelf, RNApp)) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
<import src="./MyForceUpdateInnerInnerTemplate.wxml"></import> | ||
<template wx:if="{{_r && _r.tempName}}" is="{{_r.tempName}}" data="{{..._r}}"></template> | ||
|
||
<import src="./MyForceUpdateInnerInnerTemplate.wxml"/> | ||
<template wx:if="{{(_r && _r.tempName) || (R && R.tempName)}}" is="{{_r.tempName || R.tempName}}" data="{{...(_r || R)}}"/> |
Oops, something went wrong.