/htpl

A JavaScript templating engine uses Vue syntax.

Primary LanguageTypeScriptMIT LicenseMIT

htpl [Not ready]

A JavaScript templating engine uses Vue syntax

npm

Install

npm i htpl

Usage

import * as htpl from 'htpl'

htpl(`
	<div>
		<h1>Hello, {{ msg }}</h1>
		<span h-for="n in list"> {{ n }} </span>
	</div>
`).render({
	msg: 'htpl',
	list: ['Fast', 'Simple', 'Micro']
})

License

MIT