Vue.component("node-cluster-combo-box", { props: ["v-cluster-id"], data: function () { let that = this Tea.action("/clusters/options") .post() .success(function (resp) { that.clusters = resp.data.clusters }) return { clusters: [] } }, methods: { change: function (item) { if (item == null) { this.$emit("change", 0) } else { this.$emit("change", item.value) } } }, template: `
` })