Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

284
Views
Vue : Uncaught TypeError: _ctx.toPage is not a function

when I clicked the button: it shows Uncaught TypeError: _ctx.toPage is not a function how can I fix this bug? please help me error pic

   <li v-for="pageLi of pageLis" :key="pageLi.id">
      <c-button @click="toPage(pageLi.path)">{{ pageLi.name }}</c-button>
    </li>


export default {
    setup() {
      const router = useRouter();
      const toPage = (path: string) => router.push(path);
      return {
        toPage,
      };
    },
  },
};
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

The expected way to deal with Event Handling is to register an event handler with an inline handler or method handler (via the component methods property). See Event Handling for more details.

However, even in what you're trying to do in this example, you should notice that the DOM is not available until the mounted state in the Vue Lifecyle. See Lifecyle Hooks for more details.

Finally, from this code sample, it looks like you're trying to do either Dynamic Route Matching or Programmatic Navigation? If so, the Vue Router documentation is your friend.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!