Skip to content

Commit

Permalink
Merge pull request #26 from arichardsmith/demo-patch
Browse files Browse the repository at this point in the history
Update vue dependency in demo
  • Loading branch information
takuyaa authored Nov 24, 2018
2 parents 54fa735 + 3881458 commit 71ea847
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion demo/bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@
],
"dependencies": {
"foundation": "~5.4.7",
"vue": "~0.10.6"
"vue": "^2.5.16"
}
}
4 changes: 2 additions & 2 deletions demo/tokenize.html
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ <h1>kuromoji.js demo</h1>
</tr>
</thead>
<tbody>
<tr v-repeat="token: tokens">
<tr v-for="token in tokens">
<td>{{token.surface_form}}</td>
<td>{{token.pos}}</td>
<td>{{token.pos_detail_1}}</td>
Expand All @@ -110,7 +110,7 @@ <h1>kuromoji.js demo</h1>
<a href="#" v-on="click: drawGraph" v-show="svgStyle=='hidden'" class="radius button">ラティスを表示する</a>
-->

<svg v-style="visibility: svgStyle" width="100%" height="800px">
<svg v-bind:style="{ visibility: svgStyle }" width="100%" height="800px">
<g id="lattice" transform="translate(20,20)"></g>
</svg>

Expand Down

0 comments on commit 71ea847

Please sign in to comment.