nuxt-beginners-guide icon indicating copy to clipboard operation
nuxt-beginners-guide copied to clipboard

Japan's first book that corresponds to Nuxt.js v2 and focuses on deep content.

Results 1 nuxt-beginners-guide issues
Sort by recently updated
recently updated
newest added

users//postsが消える。 ![image](https://user-images.githubusercontent.com/22491120/52793051-2da9f080-30b0-11e9-9d08-706c4f625df9.png) app/store/index.jsの`actions` ``` async addLikeLogToUser({ commit }, { user, post }) { user.likes.push({ created_at: moment().format(), user_id: user.id, post_id: post.id }) const newUser = await this.$axios.$put(`/users/${user.id}.json`, user) commit('updateUser', { user:...