Skip to content
This repository has been archived by the owner on Sep 11, 2023. It is now read-only.

Not working in .vue files #41

Open
LeoMartinDev opened this issue Aug 19, 2020 · 2 comments
Open

Not working in .vue files #41

LeoMartinDev opened this issue Aug 19, 2020 · 2 comments
Labels
enhancement New feature or request

Comments

@LeoMartinDev
Copy link

LeoMartinDev commented Aug 19, 2020

The extension does not seem to be working with .vue files.

@bmvermeer
Copy link
Collaborator

That seems to be correct.
Can you provide an example of a vue file as I am not familiar with it.
TY

@bmvermeer bmvermeer added the enhancement New feature or request label Sep 29, 2020
@LeoMartinDev
Copy link
Author

You can learn more about vue single-file components (.vue files) here https://vuejs.org/v2/guide/single-file-components.html

A basic example :

<template>
  <h2>Hello, {{ personName }}!</h2>
</template>
<script>
export default {
  data: () => {
    personName: 'Léo',
  },
}
</script>
<style scoped>
  h2 {
    font-size: 40px;
    color: black;
  }
</style>

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants