vuepress
                                
                                 vuepress copied to clipboard
                                
                                    vuepress copied to clipboard
                            
                            
                            
                        How can I get md data in my vue components?
I want to get some data in a markdown file,and use it in a vue components, I've tried import the md file in
// this README file contains progress data of all pages,I want to get it and show it on this ProgressBar.vue
import readmePage from "../../README.md"
export default {
  name: 'ProgressBar',
  mounted(){
    let pageData = readmePage.render.call(this)
  }
}
now the pageData is a vnode,but it seems mistakenly compiled,only has a div level