最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - VueJS Passing data Through render - Stack Overflow

programmeradmin2浏览0评论

I'm currently working with VueJS 2, I would like to pass some params from the HTML to the VueJS ponent. Let me show you.

My Html Div looks like this :

<div id="app" :id="1"></div>

And my javascript :

new Vue({
  store, // inject store to all children
  el: '#app',
  render: h => h(App)
});

My App Component:

<template>
  <div>
    {{ id }}
  </div>
</template>
<script>
export default {
  props: {
   id: Number
  }
}
</script>

I would like to get the id passed in the Html, in my App ponent. How should I do ?

I'm currently working with VueJS 2, I would like to pass some params from the HTML to the VueJS ponent. Let me show you.

My Html Div looks like this :

<div id="app" :id="1"></div>

And my javascript :

new Vue({
  store, // inject store to all children
  el: '#app',
  render: h => h(App)
});

My App Component:

<template>
  <div>
    {{ id }}
  </div>
</template>
<script>
export default {
  props: {
   id: Number
  }
}
</script>

I would like to get the id passed in the Html, in my App ponent. How should I do ?

Share Improve this question asked Mar 16, 2017 at 20:46 Alexis DarnatAlexis Darnat 5897 silver badges14 bronze badges 1
  • 1 id is not a good name for a prop, as it's already an attribute. – Roy J Commented Mar 16, 2017 at 21:05
Add a ment  | 

1 Answer 1

Reset to default 13

Here is one way.

<div id="app" data-initial-value="125"></div>

new Vue({
  el: '#app',
  render: h => h(App, {
    props:{
      id: document.querySelector("#app").dataset.initialValue
    }
  })
})

But you don't have to use a render function.

new Vue({
  el: '#app',
  template:"<app :id='id'></app>",
  data:{
    id: document.querySelector("#app").dataset.initialValue
  },
  ponents:{
    App
  }
})

Also, I'm using querySelector assuming you rendered initialValue (instead of id) to the page as an attribute, but you could just as easily put it somewhere else on the page like a hidden input or something. Really doesn't matter.

发布评论

评论列表(0)

  1. 暂无评论