diff --git a/Readme.md b/Readme.md index 8b52dd7..3ebf6cf 100644 --- a/Readme.md +++ b/Readme.md @@ -6,7 +6,7 @@ > **注:** > -> 1. `默认使用.tpl后缀的模板文件, 在引用模板文件时该后缀可以省略不写。` +> 1. `默认使用.htm后缀的模板文件, 在引用模板文件时该后缀可以省略不写。` > 2. `模板的路径/文件名, 可以不写引号(推荐)` ## API diff --git a/index.js b/index.js index d103c82..447a47d 100644 --- a/index.js +++ b/index.js @@ -16,7 +16,7 @@ function hash(str) { class Smarty { constructor(opt) { - this.opt = { cache: true, ext: '.tpl' } + this.opt = { cache: true, ext: '.htm' } if (opt) { Object.assign(this.opt, opt) }