You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
998 B
37 lines
998 B
2 years ago
|
"use strict";
|
||
|
const config_host = require("../../config/host.js");
|
||
|
const common_vendor = require("../../common/vendor.js");
|
||
|
const _sfc_main = {
|
||
|
data() {
|
||
|
return {
|
||
|
title: "Hello",
|
||
|
loading: true,
|
||
|
buttonGroup: [
|
||
|
{
|
||
|
image: config_host.imghost + "/static/image/right-button-wechat.png"
|
||
|
},
|
||
|
{
|
||
|
image: config_host.imghost + "/static/image/right-button-chat.png"
|
||
|
},
|
||
|
{
|
||
|
image: config_host.imghost + "/static/image/right-button-phone.png"
|
||
|
}
|
||
|
]
|
||
|
};
|
||
|
},
|
||
|
onLoad() {
|
||
|
},
|
||
|
methods: {}
|
||
|
};
|
||
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||
|
return {
|
||
|
a: common_vendor.f($data.buttonGroup, (item, index, i0) => {
|
||
|
return {
|
||
|
a: "url(" + item.image + ")"
|
||
|
};
|
||
|
})
|
||
|
};
|
||
|
}
|
||
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/Project/pet_web/components/RightNav/Index.vue"]]);
|
||
|
wx.createComponent(Component);
|