Skip to content

Commit

Permalink
fix: e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
kazupon committed Nov 13, 2024
1 parent 2f57ab2 commit baf2b4d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions examples/legacy/functions/plural.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
<body>
<div id="app">
<h2>Car:</h2>
<p class="p1">{{ $tc('car', 1) }}</p>
<p class="p2">{{ $tc('car', 2) }}</p>
<p class="p1">{{ $t('car', 1) }}</p>
<p class="p2">{{ $t('car', 2) }}</p>
<h2>Apple:</h2>
<p class="p3">{{ $tc('apple', 0) }}</p>
<p class="p4">{{ $tc('apple', 1) }}</p>
<p class="p5">{{ $tc('apple', 10, { count: 10 }) }}</p>
<p class="p6">{{ $tc('apple', 10) }}</p>
<p class="p3">{{ $t('apple', 0) }}</p>
<p class="p4">{{ $t('apple', 1) }}</p>
<p class="p5">{{ $t('apple', 10, { count: 10 }) }}</p>
<p class="p6">{{ $t('apple', 10) }}</p>
<h2>Banana:</h2>
<p class="p7">{{ $tc('banana', 1, { n: 1 }) }}</p>
<p class="p8">{{ $tc('banana', 1) }}</p>
<p class="p9">{{ $tc('banana', 100, { n: 'too many' }) }}</p>
<p class="p7">{{ $t('banana', 1, { n: 1 }) }}</p>
<p class="p8">{{ $t('banana', 1) }}</p>
<p class="p9">{{ $t('banana', 100, { n: 'too many' }) }}</p>
</div>
<script>
const { createApp } = Vue
Expand Down

0 comments on commit baf2b4d

Please sign in to comment.