Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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';
}
}
}


```