你说的上传产品是指发布代码到生成环境吗?如果是的话,按一下步骤走: 点击开发者工具的[图片]上传按钮,将提交设为体验版然后在小程序管理后台版本管理里面提交审核就好
怎么上传产品?注册好了小程序,怎么上传产品
2020-08-15微信官方提供了一个computed npm包。 链接:https://developers.weixin.qq.com/miniprogram/dev/extended/utils/computed.html
请问,微信小程序有没有像computed这种功能?我有看到小程序有提供一个computed,但是是使用在compnents中的。如果我想在page中使用computed,那么我该怎么办?
2020-08-15很感谢Feb.提供的建议,但很多时候我只想在自定义组件上添加个margin和padding,如果使用externalClasses的话就太麻烦了。 我现在统一给自定义组件添加`cstyle`属性来替代组件上的style,例如: <!-- 某个页面的WXML --> <view> <myButton cstyle="margin-bottom:20rpx;">确定</myButton> </view> myButton的代码如下 // myButton的js // components/myButton/index.js Component({ properties: { cstyle:{ type:String, value:'' } } }) <!-- myButton的WXML --> <!-- components/myButton/index.wxml --> <view style="{{cstyle}}" class="my-button"> <slot></slot> </view>
为什么给自定义组件添加style不生效?我有个自定义组件myButton: [图片] 我在使用该组件的地方添加style属性,发现它不生效: [图片]
2020-04-19