Vue.component("node-combo-box", { props: ["v-cluster-id", "v-node-id"], data: function () { let that = this Tea.action("/clusters/nodeOptions") .params({ clusterId: this.vClusterId }) .post() .success(function (resp) { that.nodes = resp.data.nodes }) return { nodes: [] } }, template: `