import { defineComponent } from "vue"; import "./xInfoDiffCard.scss"; export const xInfoDiffCard = defineComponent({ name: "xInfoDiffCard", props: ["old", "new", "title"], render() { return (
{this.title}:
{this.old}
{this.new}
); } });