WordPress小程序开发之自定义select下拉框组件components
WordPress小程序教程:WordPress小程序开发时如何自定义select下拉框组件呢?模板兔给大家讲解一下。当然,你可以使用自带的picker组件,如果想自定义,那么可以看看下面的教程。
首先新建一个components文件夹,然后在里面创建一个select目录,再创建select页面。
select.js文件代码:
// components/select/select.js
Component({
/**
* 组件的属性列表
*/
properties: {
propArray: {
type: Array,
},
key: {
type: String,
value: 'id'
},
value: {
type: String,
value: 'name'
}
},
/**
* 组件的初始数据
...