Example template editor written with in Vue.js.
The template
Hi {username}. You've logged in {login_count} times.
with the data
{
username: 'buren',
login_count: 3
}
yields
Hi buren. You've logged in 3 times.
<>
will be ignored in the template.
Screenshot
$ git clone https://github.com/buren/vue-template-editor.git
$ cd vue-template-editor
$ ruby -run -e httpd . -p 8000 # Run the server
then open http://localhost:8000
.