代码拉取完成,页面将自动刷新
同步操作将从 林岑影/vite-vue3-h5-ssr 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
import type { PluginOption } from 'vite'
import vuePlugin from '@vitejs/plugin-vue'
import vueJsx from '@vitejs/plugin-vue-jsx'
import DefinePropsRefs from '@vue-macros/define-props-refs/vite'
import DefineProps from '@vue-macros/define-props/vite'
import ReactivityTransform from '@vue-macros/reactivity-transform/vite'
export default (): PluginOption[] => ([
vuePlugin({
template: {
compilerOptions: {
isCustomElement: (tag: string) => ['def'].includes(tag),
},
},
}),
vueJsx(),
/**
* Reactivity Transform
* @description 响应性语法糖
* @see https://vue-macros.sxzz.moe/zh-CN/features/reactivity-transform.html
*/
ReactivityTransform(),
/**
* defineProps
* @description 使用 $defineProps 可以正确地解构 props 的类型
* @see https://vue-macros.sxzz.moe/zh-CN/macros/define-props.html
*/
DefineProps(),
/**
* definePropsRefs
* @description 从 defineProps 中将返回 refs 而不是 reactive 对象,可以在不丢失响应式的情况下解构 props
* @see https://vue-macros.sxzz.moe/zh-CN/macros/define-props-refs.html
*/
DefinePropsRefs(),
])
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。