webpack + art-template的基本配置、用法

1、安装依赖

yarn add art-template art-template-loader

2、在webpack配置文件(比如webpack.common.js)中增加

module.exports = {

    module: {

        rules: [

            {

                test: /\.art$/,

                loader: 'art-template-loader'

            }

        ]

    }

}

3、使用

// index.main.js

const render = require('./index.art');

const data = {

    title: 'My Page',

    msg: '模板测试信息'

};

const html = render(data);

{{include './header.art'}}

Hello art-template!!!

{{msg}}


{{title}}

 

 

 

你可能感兴趣的:(webpack,art-template)