We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac8bf18 commit f0b12a2Copy full SHA for f0b12a2
docs/components/icons/icon-demo.js
@@ -46,6 +46,9 @@ if (document.getElementById('vue-iconDemo')) {
46
},
47
48
computed: {
49
+ searchPlaceholder: function () {
50
+ return `Search ${this.icons.length} icons for...`;
51
+ },
52
downcaseFilter: function () {
53
return this.filter.toLowerCase();
54
docs/components/icons/index.html
@@ -86,7 +86,7 @@ <h2 id="available-icons">Icons</h2>
86
<div class="hxCol hxSpan-12-xs hxSpan-6-md hxSpan-4-xl">
87
<p>
88
<hx-search
89
- :placeholder="`Search ${icons.length} icons for...`"
+ :placeholder="searchPlaceholder"
90
:value="filter"
91
@input="onFilterUpdate"
92
@clear="onFilterUpdate"
0 commit comments