mirror of
https://gitee.com/baidu/amis.git
synced 2024-11-29 18:48:45 +08:00
Merge pull request #44 from hyschumi/fix_template_typo
fix(tpl-lodash): template typo
This commit is contained in:
commit
d0472717a8
@ -1,5 +1,5 @@
|
||||
import { reigsterTplEnginer, filter } from "./tpl";
|
||||
import tempalte = require('lodash/template');
|
||||
import template = require('lodash/template');
|
||||
import { filters } from "./tpl-builtin";
|
||||
import * as React from 'react';
|
||||
import * as moment from 'moment';
|
||||
@ -31,7 +31,7 @@ const imports = {
|
||||
delete imports.default; // default 是个关键字,不能 imports 到 lodash 里面去。
|
||||
function lodashCompile(str: string, data: object) {
|
||||
try {
|
||||
const fn = tempalte(str, {
|
||||
const fn = template(str, {
|
||||
imports: imports,
|
||||
variable: 'data'
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user