Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature request: support Vue Components implemented as .js files #188

Open
FarzanRNobakht opened this issue Aug 20, 2019 · 0 comments
Open

Comments

@FarzanRNobakht
Copy link

It would be nice if vue-syntax-highlight can support Vue Components Implemented as "*.js" files.
e.g for a component file like:

Vue.component('button-counter', {
  data: function () {
    return {
      count: 0
    }
  },
method:{
doSomething(){...
}
}
,
  template: '<button v-on:click="count++">You clicked me {{ count }} times.</button>'
})

The template string must be highlighted as HTML and the rest highlighted as JavaScript.

It will be useful for those who don't want to set up a full-blown Vue environment (to compile Single File Components) for a Medium-sized project.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant