I'd like to be able to use vue-stash in a way that I can simply type $db to access my data instead of this.$store.
For example, if this.$store.test were to have a value of 'testing' then I could simply write console.log($db.test) and get the word 'testing' output into my console.
Is this possible while retaining reactivity of the data?
Hi,
I'd like to be able to use vue-stash in a way that I can simply type
$db
to access my data instead ofthis.$store
.For example, if
this.$store.test
were to have a value of'testing'
then I could simply writeconsole.log($db.test)
and get the word 'testing' output into my console.Is this possible while retaining reactivity of the data?