美文网首页
pug在Vue中的使用

pug在Vue中的使用

作者: shmaur | 来源:发表于2019-01-15 22:39 被阅读57次

    安装pug

    npm i pug pug-loader pug-cli pug-filters -D
    

    pug :安装pug
    pug-loaderpugloader
    pug-clipug 编译工具
    pug-filterspug的过滤器

    接着在webpack中进行配置

    module: {
        rules: [
          {
            test:/\.jade$/,
            loader:"jade"
          },{
            test:/\.pug/,
            loader:"pug"
          },
      ]
    }
    

    最后在vue 模板中添加编译语言pug即可

    <template lang="pug">
      div(class=["hello"])
        h1 {{ msg }}
        h3 vue + axios + pug + stylus + typeScript
    </template>
    

    相关文章

      网友评论

          本文标题:pug在Vue中的使用

          本文链接:https://www.haomeiwen.com/subject/cebudqtx.html