如何使用Nuxt配置Prism

时间:2018-09-11 19:44:11

标签: node.js webpack nuxt.js prismjs

如何配置Prism与Nuxt配合使用?我将其作为供应商添加到了nuxt.config.js文件中:

// * Build configuration

build: {
  // * You can extend webpack config here
  vendor: ['axios', 'prismjs'],

  extend(config, ctx) {
    if (ctx.isServer) {
      config.externals = [
        nodeExternals({
          whitelist: [/^vuetify/]
        })
      ];
    }
  }
}

然后在脚本部分的页面中导入它:

<script>
import Prism from'prismjs';

export default {
  data() {
    return {
      post: {}
    };
  },
// more data...

那我该如何使用呢?我尝试过挂载调用它,但是它不起作用。没有错误返回,但它不会更改网站上的任何内容。

mounted() {
  Prism.highlightAll();
}

1 个答案:

答案 0 :(得分:0)

原来是可行的,只是忘了包含CSS样式。