Vue.component("server-config-copy-link", { props: ["v-server-id", "v-config-code"], data: function () { return { serverId: this.vServerId, configCode: this.vConfigCode } }, methods: { copy: function () { teaweb.popup("/servers/server/settings/copy?serverId=" + this.serverId + "&configCode=" + this.configCode, { height: "25em", callback: function () { teaweb.success("批量复制成功") } }) } }, template: `批量 ` })