vue2-client 1.8.104 → 1.8.105

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": "vue2-client",
3
- "version": "1.8.104",
3
+ "version": "1.8.105",
4
4
  "private": false,
5
5
  "scripts": {
6
6
  "serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve --no-eslint",
@@ -182,7 +182,7 @@
182
182
  <script>
183
183
  import { indexedDB } from '@vue2-client/utils/indexedDB'
184
184
  import { formatDate } from '@vue2-client/utils/util'
185
- import { post } from '@/services/api'
185
+ import { post } from '@vue2-client/services/api'
186
186
 
187
187
  export default {
188
188
  props: {
package/vue.config.js CHANGED
@@ -73,7 +73,6 @@ module.exports = {
73
73
  config.resolve = {
74
74
  extensions: ['.js', '.vue', '.json'],
75
75
  alias: {
76
- '@': path.resolve('src'),
77
76
  '@vue2-client': path.resolve('src')
78
77
  }
79
78
  }