Quick start (Vue)
New project
npm create vueless@latest# For Yarn (v1+)
yarn create vueless
# For Yarn Modern (v2+)
yarn create vueless@latest
# For Yarn ^v4.11
yarn dlx create-vueless@latestpnpm create vueless@latestbun create vueless@latestExisting project
npm install vueless
npx vueless inityarn add vueless
# For Yarn (v1+)
yarn vueless init --yarn
# For Yarn Modern (v2+)
yarn dlx vueless init --yarnpnpm add vueless
pnpm exec vueless init --pnpmbun add vueless
bunx vueless initimport { createApp } from 'vue';
import { createVueless } from "vueless";
import App from './App.vue';
const vueless = createVueless();
createApp(App).use(vueless).mount('#app');Last updated