docs: how do I use it without nuxt?
See original GitHub issueAs I understood, this library can be used without Nuxt.js
(or not?). Because library exposes useful helpers like getAccessorType
, useAccessor
. So we can create accessors (just a simple proxy) wherever we want? It would be great to add some docs about usage in projects scaffolded with Vue CLI (etc.).
Maybe I am wrong and it can not be used without Nuxt.js
? Can you correct me?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (8 by maintainers)
Top Results From Across the Web
Nuxt - The Intuitive Vue Framework
Build your next Vue.js application with confidence using Nuxt. An open source framework making web development simple and powerful.
Read more >Plugins directory - Nuxt
Another way to use axios without installing the module is by importing axios direct in the <script> tag. pages/index.vue <script> import axios from...
Read more >Routing - Nuxt
In other words, all you have to do to have routing in your application is to create .vue files in the pages folder....
Read more >Built-in Components - Nuxt
The <Nuxt> component is the component you use to display your page components. ... To learn more about keep-alive and keep-alive-props see the...
Read more >Views - Nuxt
The Views section describes all you need to know to configure data and views for a specific route in your Nuxt Application. Views...
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
@andrewvasilchuk you’d be very welcome to test the current docs and support for using this library without Nuxt:
nuxt-typed-vuex@0.1.10-beta.2
. 😃@danielroe, How to create
accessor
for thestore
and where to store it? Is it good idea to store it underVue.prototype.$accessor
? How to provide it globally, or better just import it from somewhere like thisimport { storeAccessor } from '@/store'
?