suchen

Heim  >  Fragen und Antworten  >  Hauptteil

„Nicht registrierte Vue-Route“

Ich versuche, einer vorhandenen Webanwendung eine neue Route hinzuzufügen:

Dies ist der Einstiegspunkt:

// main.js
import router from './router';

... etc

new Vue({
  router,
  ... etc
  render: (h) => h(App),
}).$mount('#app');

Das ist der Router:

// router/index.js
import AffiliateLinks from '../modules/affiliate_links/AffiliateLinks.vue';

Vue.use(VueRouter);

const routes = [
... etc
  {
    path: '/affiliate-links/client',
    component: AffiliateLinks,
    meta: {
      restricted: 'CLIENT',
    },
  },
];

const router = new VueRouter({
  routes,
});

router.beforeEach((to, from, next) => {
  ... etc

  // check routes restricted by distribution channel
  if (to.meta?.restricted && !to.meta.restricted.includes(store.state.user.access.distribution_channel)) {
    next({ path: '/' });
    return;
  }

  // user is logged in, allow requested routing
  next();
});

export default router;

// Dies ist die übergeordnete Komponente:

// AffiliateLinks.vue
<template>
  <v-container fluid>
    <v-row align-content="space-between">
      <h3>String Here</h3>
      <v-btn @click.stop="showAffiliateLinksModal = true" />
    </v-row>
    <AffiliateLinksModal v-model="showAffiliateLinksModal" @close="showAffiliateLinksModal = false" />
  </v-container>
</template>

<script>
import AffiliateLinksModal from './AffiliateLinksModal.vue';
export default {
  name: 'AffiliateLinks',
  components: {
    AffiliateLinksModal,
  },
  data() {
    return {
      showAffiliateLinksModal: false,
    };
  },
};
</script>

// Dies ist die untergeordnete Komponente:

// AffiliateLinksModal.vue
<template>
  <v-dialog v-model="value" max-width="450px">
    <v-card>
      <v-card-actions>
        <v-btn @click.stop="$emit('close')">String Here</v-btn>
      </v-card-actions>
    </v-card>
  </v-dialog>
</template>

<script>
export default {
  name: 'AffiliateLinksModal',
  props: ['value'],
};
</script>

Alles sieht einfach aus, aber wenn ich die Vue-Entwicklertools überprüfe, kann ich die neue Route nicht sehen, wenn ich auf die Komponente klicke, wie

<v-card :to="url">
  ... etc
</v-card>

Keine Antwort.

P粉338969567P粉338969567450 Tage vor416

Antworte allen(1)Ich werde antworten

  • P粉605233764

    P粉6052337642023-09-12 13:54:32

    我弄清楚了。

    我结束了一天的工作,并将我的更改提交到远程仓库。 这时我注意到路由器上的更改不见了。 我可以在文本编辑器和本地Git工作更改中看到这些更改,但它们无法推送到远程仓库。

    值得注意的是:我删除了本地仓库,并在同一位置重新克隆,但问题仍然存在。

    我创建了一个临时文件夹,问题就解决了...

    Antwort
    0
  • StornierenAntwort