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
1007 B

1 year 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 + ")"
};
})
};
}
1 year ago
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "D:/phpstudy_pro/WEB/pet_uni/components/RightNav/Index.vue"]]);
1 year ago
wx.createComponent(Component);