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

132
Views
Collecting and storing HTML elements

How do i collect the value of a p-tag and store it in vue?

<p id="idNum">{{lesson._id}}</p>
about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

const value = document.querySelector('p#idNum').textContent
about 4 years ago · Juan Pablo Isaza Report

0

Working Demo :

new Vue({
  el: '#app',
  data() {
    return {
        lesson: {
            _id: 123
        },
      paragraphValue: ''
    }
  },
  mounted() {
    this.paragraphValue = document.getElementById('idNum').innerHTML;
    console.log(this.paragraphValue);
  }
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.5.17/vue.js"></script>
<div id="app">
  <p id="idNum">{{ lesson._id }}</p>
</div>

about 4 years ago · Juan Pablo Isaza Report

0

use ref instead of id and you can call it like console.log(refs["idNum"])

<p ref="idNum">{{lesson._id}}</p>

Do not forget to import ref from vue

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!