Lines Matching refs:text
110 <!-- 不使用占位符,text中显示“Hello world!” -->
111 <text>{{ $t('strings.hello') }}</text>
113 <text>{{ $t('strings.object', { name: 'Hello world' }) }}</text>
115 <text>{{ $t('strings.array', ['Hello world']) }}</text>
116 <!-- 先在js中获取资源内容,再在text中显示“Hello world” -->
117 <text>{{ hello }}</text>
118 …<!-- 先在js中获取资源内容,并将占位符{name}替换为“Hello world”,再在text中显示“Object parameter substitution-Hello world” …
119 <text>{{ replaceObject }}</text>
120 …<!-- 先在js中获取资源内容,并将占位符{0}替换为“Hello world”,再在text中显示“Array type parameter substitution-Hello world”…
121 <text>{{ replaceArray }}</text>
169 <text>{{ $tc('strings.people', 0) }}</text>
171 <text>{{ $tc('strings.people', 1) }}</text>
173 <text>{{ $tc('strings.people', 2) }}</text>
175 <text>{{ $tc('strings.people', 6) }}</text>
177 <text>{{ $tc('strings.people', 50) }}</text>
179 <text>{{ $tc('strings.people', 100) }}</text>