Quick Start
Installation
Core
Npm
shell
npm i @vue-styled-components/core
Yarn
shell
yarn add @vue-styled-components/core
Pnpm
shell
pnpm i @vue-styled-components/core
Vite Plugin
Npm
shell
npm i @vue-styled-components/plugin
Yarn
shell
yarn add @vue-styled-components/plugin
Pnpm
shell
pnpm i @vue-styled-components/plugin
Vite Config
ts
import vueStyledPlugin from "@vue-styled-components/plugin"
// ...
export default defineConfig({
// ...
plugins: [
vueStyledPlugin()
// ...
]
})