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.
- Host: GitHub
- URL: https://github.com/xpaw/php-vue-template
- Owner: xPaw
- License: mit
- Created: 2022-03-29T20:36:50.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-29T10:24:57.000Z (4 months ago)
- Last Synced: 2026-02-20T03:40:41.494Z (3 months ago)
- Topics: php, template-engine, template-language, templating, vue
- Language: PHP
- Homepage:
- Size: 112 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```