adata-ui 0.1.18 → 0.1.19

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adata-ui",
3
- "version": "0.1.18",
3
+ "version": "0.1.19",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "vue-cli-service serve",
@@ -59,15 +59,15 @@
59
59
  fill="#2C3E50"></path>
60
60
  </svg>
61
61
  </div>
62
- <div
62
+ <a
63
63
  v-for="(item, index) in subheaderItems"
64
64
  :key="index"
65
65
  class="menu_mobile-wrapper"
66
66
  :class="{'active-burger-tab': locationUrl.includes(toAdtdev(item.url))}"
67
- @click="handleClick(item.url)"
67
+ :href="toAdtdev(item.url)"
68
68
  >
69
69
  {{ item.name }}
70
- </div>
70
+ </a>
71
71
  </div>
72
72
  </MobileToggle>
73
73
  </header>
@@ -179,9 +179,6 @@ export default {
179
179
  thousandSeparator(val) {
180
180
  return val ? val.toString().replace(/\B(?=(\d{3})+(?!\d))/g, " "): '';
181
181
  },
182
- handleClick(url) {
183
- window.open(this.toAdtdev(url), "_self");
184
- }
185
182
  },
186
183
  watch: {
187
184
  balance(newBalance) {