1.0.0 • Published 1 year ago
@unplugin-vue-ce/switch-shadow v1.0.0
@unplugin-vue-ce/switch-shadow
The implementation principle of @unplugin-vue-ce/switch-shadow comes from vue/core pr #7971
Tips: ⚠ This plugin will inject the implementation code into the vue runtime, which is what I have to tell you. If you have any problems using it, please submit an issue
Snapshot
TODO
Install
npm i @unplugin-vue-ce/switch-shadowor
yarn add @unplugin-vue-ce/switch-shadowor
pnpm add @unplugin-vue-ce/switch-shadowUsage
// vite.config.ts
import { defineConfig } from 'vite'
import { viteVueCEShadow } from '@unplugin-vue-ce/switch-shadow'
import vue from '@vitejs/plugin-vue'
import type { PluginOption } from 'vite'
export default defineConfig({
plugins: [
vue(),
viteVueCEShadow() as PluginOption,
],
})// rollup.config.js
import { rollupVueCEShadow } from '@unplugin-vue-ce/switch-shadow'
export default {
plugins: [
rollupVueCEShadow(),
],
}// webpack.config.js
module.exports = {
/* ... */
plugins: [
require('@unplugin-vue-ce/switch-shadow').webpackVueCEShadow(),
],
}// vue.config.js
module.exports = {
configureWebpack: {
plugins: [
require('@unplugin-vue-ce/switch-shadow').webpackVueCEShadow({}),
],
},
}// esbuild.config.js
import { build } from 'esbuild'
import { esbuildVueCEShadow } from '@unplugin-vue-ce/switch-shadow'
build({
plugins: [esbuildVueCEShadow()],
})1.0.0
1 year ago
1.0.0-beta.20
2 years ago
1.0.0-beta.21
2 years ago
1.0.0-beta.19
2 years ago
1.0.0-beta.11
2 years ago
1.0.0-beta.12
2 years ago
1.0.0-beta.10
2 years ago
1.0.0-beta.17
2 years ago
1.0.0-beta.18
2 years ago
1.0.0-beta.15
2 years ago
1.0.0-beta.16
2 years ago
1.0.0-beta.13
2 years ago
1.0.0-beta.14
2 years ago
1.0.0-beta.9
2 years ago
1.0.0-beta.8
2 years ago
1.0.0-beta.6
2 years ago
1.0.0-beta.5
2 years ago
1.0.0-beta.4
2 years ago
1.0.0-beta.3
2 years ago