Is it possible to get intelliSense for variables in petite/vue?
See original GitHub issueIs it technically possible to get intelliSense between javascript variables and functions in the script tag and the variables used in the html?
<script type="module">
import { createApp, reactive } from "https://unpkg.com/petite-vue?module";
const store = reactive({
count: 0,
inc() {
this.count++;
},
});
// manipulate it here
store.inc();
createApp({
// share it with app scopes
store,
}).mount();
</script>
<div v-scope="{ localCount: 0 }">
<p>{{ store.count }}</p>
<button @click="store.inc">increment</button>
</div>
When I hover in my p
tag over store
is it technically possible to get some feedback when hovering over as we would in an js file or .vue file?
Issue Analytics
- State:
- Created a year ago
- Comments:17 (9 by maintainers)
Top Results From Across the Web
A Little Taste of Petite-Vue - nystudio107
Petite-Vue is a tiny 5.8kb JavaScript library that gives you the power of Vue.js, but slimmed down & optimized for sprinkling small bits...
Read more >Vue IntelliSense in VSCode - ITNEXT
I find stand-alone “Vue components” that have a single purpose that you can install from ... This is all possible with the VSCode...
Read more >Entry Form in Craft CMS with GraphQL and petite-vue
First, we need to be able to successfully capture the submitted data so we can pass it into a GraphQL request and save...
Read more >Unpopular opinion? I think Vue is heading in the wrong ...
I used to be able to point to React and make fun of it for naming things ... added a comment, now no...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
This is a known issue, please track #1284.
It should be supported in 0.38.3, please let me know if anything not working.