esbuild-plugin-vue3 icon indicating copy to clipboard operation
esbuild-plugin-vue3 copied to clipboard

esbuild plugin for loading Vue 3 SFC files

Results 11 esbuild-plugin-vue3 issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, Do you have any advice/recommendations for using this plugin to migrate from vue2 to vue3? There doesn't seem to be much support for completing this migration using esbuild as...

Hello, TypeScript throws error on `plugins: [vuePlugin()]`. In my opinion, It is caused by mismatching files in the plugin `esbuild-plugin-vue3/node_modules/esbuild/lib/main.d.ts` ([email protected]) and in **esbuild** `esbuild/lib/main.d.ts` ([email protected]) When I replace the...

Hello, I'm trying to port my app from Webpack to ESBuild and see the following problem with imports resolving: ``` module.vue: export const FOO = 'foo'; export default { data()...

Esbuild [v0.4.14](https://github.com/evanw/esbuild/releases/tag/v0.14.4) changes the way export default works to match **vue-loader** behavior. From this version on the plugin doesn't work anymore (I'm using it with latest vue@next + vue-router@next). Issue...

With the release of vue 3.2, `defineCustomElement` is officially supported and it has a specialized property called `styles` that can be added on that will append the styles in the...

Instead of throwing when non existent template.

Fixed preprocessCustomRequire not passed to compileStyleAsync and added types

Hey, thank you everyone involved in this plugin. I ran into an issue when trying to use this on browser with polyfills Here is what was wrong this plugin provides...

Consider my very simple component that is inheriting from another component: ``` import base from "src/components/base" export default { extends: base, } ``` When running ES Build I got an...

Source: ```javascript import { createApp, ref } from "vue"; import "vuetify/styles"; import { createVuetify } from "vuetify"; import * as components from "vuetify/components"; import * as directives from "vuetify/directives"; import...