Vue

Filtering Data in Vuex

Like most challenges in software development, there’s usually more than one way to implement a solution. Filtering data that resides in Vuex is no exception. This is only one potential implementation. Depending on your situation, this may or may not be applicable. For me, it worked out just fine.  The Setup I have this sample...

Examining the Vue render function

If you’re using the Vue CLI to scaffold you VueJS projects (and if you aren’t, you should be) you’ve surely noticed that when you create a new project it will generate a number of files for you. One of these being main.js. If you open up main.js you will find something similar to the following: After...

Solving the “You are using the run-time only build of Vue” error

So you downloaded all the latest bits of Vue and you’re ready to get started building the next Amazon.com. Just to be sure you’re on the right track, you fire up your development server and browse to localhost:8080 and….nothing. After a couple of chin scratches and an audible groan you pop open dev tools in...