Skip to content

Commit dfb6af7

Browse files
authored
fix(pagination): use unicode escape sequence for default bookend button text (#3186)
1 parent b752990 commit dfb6af7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/mixins/pagination.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -103,31 +103,31 @@ const props = {
103103
},
104104
firstText: {
105105
type: String,
106-
default: '«'
106+
default: '\u00AB' // '«'
107107
},
108108
labelPrevPage: {
109109
type: String,
110110
default: 'Go to previous page'
111111
},
112112
prevText: {
113113
type: String,
114-
default: '‹'
114+
default: '\u2039' // '‹'
115115
},
116116
labelNextPage: {
117117
type: String,
118118
default: 'Go to next page'
119119
},
120120
nextText: {
121121
type: String,
122-
default: '›'
122+
default: '\u203A' // '›'
123123
},
124124
labelLastPage: {
125125
type: String,
126126
default: 'Go to last page'
127127
},
128128
lastText: {
129129
type: String,
130-
default: '»'
130+
default: '\u00BB' // '»'
131131
},
132132
labelPage: {
133133
type: [String, Function],
@@ -139,7 +139,7 @@ const props = {
139139
},
140140
ellipsisText: {
141141
type: String,
142-
default: '…'
142+
default: '\u2026' // '…'
143143
}
144144
}
145145

0 commit comments

Comments
 (0)