Code Monkey home page Code Monkey logo

Comments (6)

apeschar avatar apeschar commented on May 23, 2024 2

It's the Vue compiler that replaces export default with a variable assignment, and this breaks the decorator. We're using a version of the Vue compiler that is no longer supported because this projected is/was intended for use with the legacy Vue 2.

esbuild-vue should probably get a new release for Vue 3 using all the latest components. But that's currently not on my roadmap.

You can try rewriting your code.

Replace this:

@Component(...)
export default class MyComponent { ... }

With:

@Component(...)
class MyComponent { ... }

export default MyComponent;

By moving the export default to a separate line, the Vue compiler will not introduce the syntax error you're seeing.

from esbuild-vue.

apeschar avatar apeschar commented on May 23, 2024 1

You can use the same workaround:

@Component({
  name: 'Page404'
})
class Page404 extends Vue {
  private message = '404 Page Not Found'
}

export default Page404;

The main thing is that you can't combine the @ decorators with export default.

from esbuild-vue.

He110te4m avatar He110te4m commented on May 23, 2024 1

Is it possible to build this transformation into the plugin?

Check for export default class XXX before you begin processing the .vue file.

from esbuild-vue.

apeschar avatar apeschar commented on May 23, 2024

That is interesting. It seems that esbuild-vue doesn't work with TypeScript. It's probably necessary to first compile the TypeScript to JavaScript before applying the Vue compiler. I'll have a look to see if I can achieve that.

See this issue as well: evanw/esbuild#2069

from esbuild-vue.

pantelispanayiotou avatar pantelispanayiotou commented on May 23, 2024

Thank you so much for the workaround, it solved all of my issues!

from esbuild-vue.

vokshirg avatar vokshirg commented on May 23, 2024

What would you advice in this case?

@Component({
  name: 'Page404'
})
export default class extends Vue {
  private message = '404 Page Not Found'
}

from esbuild-vue.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.