//@ts-nocheck import { defineComponent } from "vue"; import copy from "copy-to-clipboard"; import $ from "jquery"; import { UI } from "../UI"; export const xLinkCopy = defineComponent({ name: "xLinkCopy", props: ["to"], data() { return {}; }, setup(props) {}, computed: { xDomText() { if (this.$slots?.default) { return this.$slots.default(); } return ""; } }, watch: {}, created() {}, methods: { handleClickText(...args) { if (this.to) { this.to.apply(this, args); } }, copyText() { if (copy($(this.$refs.contents).text())) { UI.message.success(this.$t("已经成功复制到剪切板").label); } else { UI.message.error(this.$t("复制到剪切板失败").label); } } }, render({ xDomText, handleClickText, copyText }) { return ( ); } });