An open API service indexing awesome lists of open source software.

https://github.com/xpaw/php-vue-template

HTML-based template system for PHP syntax inspired by Vue.
https://github.com/xpaw/php-vue-template

php template-engine template-language templating vue

Last synced: 3 months ago
JSON representation

HTML-based template system for PHP syntax inspired by Vue.

Awesome Lists containing this project

README

          

This is an unfinished PHP templating system which takes inspiration from Vue.

Attribute values, directives, and text interpolation accept PHP expressions.

For example:
```html


some white space {{ $test }}


something else



  • {{ $value }}


```

compiles to:
```php


some white space


something else






```