Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wallacemaxters/blade-petite-vue
Use petite-vue with Blade views in Laravel
https://github.com/wallacemaxters/blade-petite-vue
blade laravel petite-vue php
Last synced: about 1 month ago
JSON representation
Use petite-vue with Blade views in Laravel
- Host: GitHub
- URL: https://github.com/wallacemaxters/blade-petite-vue
- Owner: wallacemaxters
- Created: 2023-07-06T19:46:16.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-04-09T01:28:42.000Z (9 months ago)
- Last Synced: 2024-08-15T04:45:28.655Z (4 months ago)
- Topics: blade, laravel, petite-vue, php
- Language: PHP
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# WallaceMaxters/BladePetiteVue
Use petite-vue with Blade views in Laravel
###
```php
@petitevue
The current url is:
My name is @{{ name }}
This is another value @{{ anotherValue }}
function (props) {
return {
...props,
anotherValue: 5,
changeName() {
this.name = 'Maxters';
}
}
}
```