Vue读取本地md文件

使用 $http 方式获取

npm install vue-resource --save-dev

news_list.vue

<yd-layout style="margin-top: 10px">
  <yd-cell-group title="" class="demo-small-pitch">
    <yd-cell-item v-for="title in titles" v-bind:key="title" arrow type="link" v-bind:href="'/news_detail/' + title">
      <span slot="left">{{ title }}</span>
    </yd-cell-item>
  </yd-cell-group>
</yd-layout>

news_detail.vue

<template>
    <!--<div class="article" v-html="compiledMarkdown" v-highlight></div>-->
    <vue-markdown class="article" v-highlight :source="content"></vue-markdown>
</template>

<script>
import VueMarkdown from 'vue-markdown'
import marked from 'marked'

export default {
  name: 'newsDetail',
  data () {
    return {
      content: '',
      title: this.$route.params.title
    }
  },
  components: {
    'vue-markdown': VueMarkdown // 声明组件
  },
  created () {
    var self = this
    this.$http.get('static/content/news/' + this.title + '.md').then((response) => {
      console.log(response.body)
      self.content = response.body
    })
  },
  computed: {
    compiledMarkdown () {
      return marked(this.content, { sanitize: true })
    }
  }
}
</script>

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/vue-reads-local-md-file/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Vue读取本地md文件
使用 $http 方式获取 npm install vue-resource --save-dev news_list.vue <yd-layout style="margin-top: 10px"> <yd-cell-group titl……
<<上一篇
下一篇>>
文章目录
关闭
目 录