1.0.1 • Published 5 years ago

wxml-loader-template v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
5 years ago

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"

实例用法