1.0.4 • Published 4 years ago

@feizheng/next-tmpl v1.0.4

Weekly downloads
4
License
MIT
Repository
-
Last release
4 years ago

next-tmpl

A simple tmpl based on next.

installation

npm install -S @feizheng/next-tmpl

usage

import '@feizheng/next-tmpl';

nx.tmpl('I am {0}, I can live {1} year', ['afei', 100]);
nx.tmpl('I am {name}, I can live {age} year', { name:'afei', age:100});

// I am afei, I can live 100 year