vite-plugin-vue2
vite-plugin-vue2 copied to clipboard
Vite plugin for Vue 2.7
 version: - "@vitejs/plugin-vue2 2.2.0
Hi all, I'm not a ViteJS user, however I am a user of rollup, and more precisely of [rollup-plugin-vue](https://github.com/vuejs/rollup-plugin-vue) which is now archived and says to move to Vite. Since...
### Describe the bug when i migrate my project from vue-cli to vite, i meet an unexpected problem! vue component cannot be loaded correctly when data have some specific name...
### Discussed in https://github.com/vitejs/vite-plugin-vue2/discussions/81 Originally posted by **SaschaAusUlm** March 22, 2023 Hi! We're trying to convert our application (Vue.js 2.7.14) to Vitejs as preparation for a Vue 3 migration later...
```typescript import { Vue, Component, Prop } from "vue-property-decorator"; import Layout from "../Layout.vue"; @Component({ components: { Layout, } }) export default class extends Vue { // someing code } ```...
When running `vite build` it fails with the following error ```console $ yarn vite build vite v3.2.2 building for production... ✓ 46 modules transformed. [vite:vue2] Could not load /vite-vue2-null-repro/node_modules/vue2-google-maps/dist/components/placeInputImpl.js?vue&type=script&src=true&lang.js?commonjs-exports (imported...
When building for development all template compiler warnings are treated as errors instead of warning and will break the build. Examples for such warnings are: ``` text \"Some comment\" between...
Hi, I'm making a component library on Vue v.2.7.14 + Vite v.4.1.4 everything works, except for the prompts in the IDE where I'm using an already compiled package. Screenshot 1...
I'm migrating a large Vue app to Vite. One issue I ran into was with `` tags that a few of our SFCs have, which contain documentation in markdown to...
The compiler options need to be documented somewhere. I found some posts on how this is supposed to work in vue2 and vue3 plugins. I am using the vue2 plugin,...