35

編集

したがって、ルーターが履歴モードにあることに関係していることがわかりました'mode': 'history',.router.jsから削除すると、すべてが再び機能します! 他の人が同じ問題を抱えている場合、または誰かが説明を提供できる場合は、ここを離れます...

オリジナル

vue-router と cordova で vue v2 を使用することができません (つまりcordova/www、index.html ファイルにビルドし、cordova を動作させます)。以前は vue と vue-router v1 でできました。vue v2でもできますが、vue-routerを使用しません。

明確にするためにnpm run dev、ビルドを開くときではなく、使用するときにアプリが機能しindex.htmlます。

これは、パスを探しているルーターに関係していると感じています/が、index.html?

問題を再現できるリポジトリを次に示します。

以下は関連するコードです。

main.js:

import Vue from 'vue';
import App from './App.vue';
import router from './router/router.js';
    
/* eslint-disable no-new */
new Vue({
  el: '#app',
  router,
  // replace the content of <div id="app"></div> with App
  render: h => h(App),
});

app.vue:

<template>
  <div id="app">
    <img src="./assets/logo.png">
    <router-view></router-view>
  </div>
</template>
    
<script>
import Hello from './components/Hello';
    
export default {
  name: 'app',
  components: {
    Hello,
  }
}
</script>
    
<style>
#app {
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;
  margin-top: 60px;
}
</style>

/router/router.js:

import Vue from 'vue';
import Router from 'vue-router';
    
Vue.use(Router);
    
import Hello from '../components/Hello';
    
export default new Router({
  'mode': 'history',
  scrollBehavior: () => ({ y: 0 }),
  'routes': [
    {
      'path': '/',
      'component': Hello,
    }
  ]
})

config/index.js:

// see http://vuejs-templates.github.io/webpack for documentation.
var path = require('path');
    
module.exports = {
  build: {
    env: require('./prod.env'),
    index: path.resolve(__dirname, '../../cordova/www/index.html'),
    assetsRoot: path.resolve(__dirname, '../../cordova/www'),
    assetsSubDirectory: 'static',
    assetsPublicPath: '',
    productionSourceMap: true,
    // Gzip off by default as many popular static hosts such as
    // Surge or Netlify already gzip all static assets for you.
    // Before setting to `true`, make sure to:
    // npm install --save-dev compression-webpack-plugin
    productionGzip: false,
    productionGzipExtensions: ['js', 'css'],
  },
  dev: {
    env: require('./dev.env'),
    port: 8080,
    assetsSubDirectory: 'static',
    assetsPublicPath: '/',
    proxyTable: {},
    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.
    cssSourceMap: false,
  }
}
4

5 に答える 5

3

index.js assetsPublicPath: '/'を 次のように変更する必要がありますassetsPublicPath: './'

于 2018-04-08T13:45:27.917 に答える
0

別のホームルーターを追加する必要があることがわかり、空の文字列からに変更しまし'''/index.html'

ベースを次のように変更します

<base href='./'>

Yanisが言ったように、ルーターから履歴を削除します。

于 2019-05-20T00:34:20.887 に答える