@asd20/ui 3.2.562 → 3.2.564
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -96,7 +96,11 @@
|
|
|
96
96
|
/> -->
|
|
97
97
|
</div>
|
|
98
98
|
|
|
99
|
-
<div
|
|
99
|
+
<div v-if="cards.length < 1">
|
|
100
|
+
<br />
|
|
101
|
+
<p>There are currently no featues to view.</p>
|
|
102
|
+
</div>
|
|
103
|
+
<div class="feed" v-if="cards.length > 0">
|
|
100
104
|
<div id="list-start" class="article-pagination">
|
|
101
105
|
<p class="result-count">
|
|
102
106
|
Viewing article {{ counter }}
|
|
@@ -126,8 +126,11 @@
|
|
|
126
126
|
</select>
|
|
127
127
|
</form> -->
|
|
128
128
|
</div>
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
<div v-if="cards.length < 1">
|
|
130
|
+
<br />
|
|
131
|
+
<p>There are currently no announcements to view.</p>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="feed" v-if="cards.length > 0">
|
|
131
134
|
<div id="list-start" class="article-pagination">
|
|
132
135
|
<p class="result-count">
|
|
133
136
|
Viewing article {{ counter }}
|
|
@@ -200,18 +200,41 @@ export default {
|
|
|
200
200
|
|
|
201
201
|
// this.tabs ? this.tabsList[0].hash : 'one',
|
|
202
202
|
},
|
|
203
|
+
// created() {
|
|
204
|
+
// if (typeof window !== 'undefined' && this.tabsList.length) {
|
|
205
|
+
// window.location.hash = this.tabsList[0].hash
|
|
206
|
+
// console.log(this.tabsList[0].hash)
|
|
207
|
+
// if (
|
|
208
|
+
// typeof window !== 'undefined' &&
|
|
209
|
+
// window.location.hash.indexOf('#tab-') > -1
|
|
210
|
+
// ) {
|
|
211
|
+
// this.tab = window.location.hash
|
|
212
|
+
// console.log(window.location.hash)
|
|
213
|
+
// }
|
|
214
|
+
// window.focus(this.tab)
|
|
215
|
+
// }
|
|
216
|
+
// },
|
|
217
|
+
|
|
203
218
|
created() {
|
|
204
|
-
if (
|
|
205
|
-
window
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
)
|
|
219
|
+
if (
|
|
220
|
+
typeof window !== 'undefined' &&
|
|
221
|
+
window.location.hash.indexOf('#tab-') > -1
|
|
222
|
+
) {
|
|
223
|
+
this.tab = window.location.hash
|
|
224
|
+
console.log('#tab-check=', window.location.hash)
|
|
225
|
+
} else {
|
|
226
|
+
if (typeof window !== 'undefined' && this.tabsList.length) {
|
|
227
|
+
window.location.hash = this.tabsList[0].hash
|
|
210
228
|
this.tab = window.location.hash
|
|
229
|
+
console.log('forced tab =', this.tabsList[0].hash)
|
|
211
230
|
}
|
|
212
|
-
window.focus(this.tab)
|
|
213
231
|
}
|
|
232
|
+
window.focus(this.tab)
|
|
233
|
+
},
|
|
234
|
+
mounted() {
|
|
235
|
+
window.focus(this.tab)
|
|
214
236
|
},
|
|
237
|
+
|
|
215
238
|
computed: {
|
|
216
239
|
pageHeaderContent() {
|
|
217
240
|
return {
|