Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/elfalem/NVue
Browse files Browse the repository at this point in the history
  • Loading branch information
elfalem committed May 10, 2020
2 parents 649234d + c09558b commit 537107f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ String interpolation:
Iterate through a list of items:
````
<template>
<div v-for="item in Items">
<div v-for="var item in Items">
{{item.Id}} - {{item.Name}}
</div>
</template>
Expand All @@ -27,7 +27,7 @@ Iterate through a list of items:
Expressions can also be bound to attributes if they start with a colon. (Alternatively you can use the more verbose `v-bind:` syntax)
````
<template>
<div v-for="item in Items">
<div v-for="var item in Items">
<span :id="item.Id">{{item.Name}}</span>
</div>
</template>
Expand Down Expand Up @@ -216,4 +216,4 @@ Console.WriteLine(result); // Hello World, welcome to NVue!
There are no equivalents to the Razor concepts of Tag Helpers, Partial Views, and View Components.

## Final Notes
Please note that this is currently a proof of concept. I'd like to hear about your experience if you give it a try. Also, pull requests are welcome!
Please note that this is currently a proof of concept. I'd like to hear about your experience if you give it a try. Also, pull requests are welcome!

0 comments on commit 537107f

Please sign in to comment.