/* * @Author: huirubai * @Date: 2025-08-22 13:11:51 * @Last Modified: huirubai * @Last Modified time: Do not edit */ import { createApp } from 'vue'; import App from './App.vue'; import { registerComponents } from './web-components'; import Antd from 'ant-design-vue'; import 'ant-design-vue/dist/reset.css'; // 按需加载组件 registerComponents(['cell-button', 'manual-link', 'copy-button']); const app = createApp(App); app.use(Antd); app.mount('#app');