pull/2/head
xiaozhiyong 2 years ago
parent 8ab0bd3b09
commit c6c1af91a9
  1. 10
      src/store/piniaIndex.js
  2. 4
      vue.config.js

@ -28,6 +28,16 @@ const instance = defineStore('user', {
actions: {
getPosition() {
this.position = { latitude: 36.636753, longitude: 119.11914 }
if (navigator?.geolocation?.getCurrentPosition) {
console.log('存在原生定位')
navigator.geolocation.getCurrentPosition(position => {
console.log('原生定位', position)
})
} else {
console.log('原生定位不可用')
}
// return
initAMap().then(() => {
// console.log(3)

@ -1,6 +1,6 @@
const { defineConfig } = require('@vue/cli-service')
const path = require('path')
const port = 9528
function resolve(dir) {
return path.join(__dirname, dir)
}
@ -12,7 +12,7 @@ module.exports = defineConfig({
lintOnSave: false,
devServer: {
port: port,
port: 9528,
// https: true,
proxy: {
[process.env.VUE_APP_BASE_API]: {

Loading…
Cancel
Save