(Relates to: VueJS 2.x)
I received the following error:
[Vue warn]: v-bind without argument expects an Object or Array value found in ---> <Anonymous> <Root>
The error was caused by the following line of code:
<input type="text" class="form-control" id="Title" v-bind="post.Title">
My mistake:
I used v-bind but I should have used v-model.
The correct code is:
<input type="text" class="form-control" id="Title" v-model="post.Title">