Skip to content

TIP

推荐使用jsx进行开发

安装

前置准备

  • node >= 18.x
  • vue >= 3.x
  • @arco-design/web-vue >= 2.x
sh
npm install -D arco-vue-plus-components
sh
yarn add -D arco-vue-plus-components
sh
pnpm install arco-vue-plus-components

完整导入

js
import { createApp } from 'vue'
import ArcoPlus from 'arco-vue-plus-components';
import App from './App.vue';
import 'arco-vue-plus-components/dist/style.css';

const app = createApp(App);
app.use(ArcoPlus);
app.mount('#app');

浏览器兼容性

  • Edge>=79
  • Firefox>=78
  • Chrome>=83
  • Safari>=12