wxml-loader-template

yarn add -D wxml-loader-template || npm i wxml-lodaer-template -d

Usage no npm install needed!

<script type="module">
  import wxmlLoaderTemplate from 'https://cdn.skypack.dev/wxml-loader-template';
</script>

README

wxml-loader-template

安装

yarn add -D wxml-loader-template || npm i wxml-lodaer-template -d

webpack.config

module.exports = {
  module: {
    rules: [
      {
        test: /\.wxml$/,
        loader: 'wxml-loader-template'
      }
    ]
  }
}

关于语法

由于使用的是 vue-template-compiler 进行解析,所以语法基本与 vue-loader 相同

唯一区别就是我们需要加template中加入lang="wxml"

实例用法