Also, a good tutorial for beginners... is the Vue guide itself, it's concise and authoritative:<p><a href="https://vuejs.org/v2/guide" rel="nofollow">https://vuejs.org/v2/guide</a><p>Devote half a day (more or less, depending on how fast you read/take in information that you might use later), read through the "essentials" section and "components in depth" at the very least, and then get started building stuff and use the guide as a reference (and also the actual API reference).
Good intro, few nitpicks:<p>- it should be mentioned that components have to return data as a function [0]<p>- v-for should ideally be used with keys [1]<p>[0] <a href="https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function" rel="nofollow">https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Fu...</a><p>[1] <a href="https://vuejs.org/v2/guide/list.html#key" rel="nofollow">https://vuejs.org/v2/guide/list.html#key</a><p>One should definitely mention the vue.js docs for basics.
I know it may be tangentially related, but did anyone of you try to use TensorFlow.js with Vue.js? While some setups do work, the default one (i.e. `vue create proj`) results in some strange errors (seem to be a problem with dev dependencies). More details:<p><a href="https://stackoverflow.com/questions/51812619/error-for-tensorflow-js-in-vue-js-app-in-chrome" rel="nofollow">https://stackoverflow.com/questions/51812619/error-for-tenso...</a>
I think you need to check start-here branch. In doc it says app.js is empty, in reality its set to something similar you what should type it to. neither worked for me.