mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Optimized for SPA
This commit is contained in:
23
application/symfony/src/Controller/SPAController.php
Normal file
23
application/symfony/src/Controller/SPAController.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
namespace App\Controller;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Response;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
/**
|
||||
* Offers an SPA with Vue.js.
|
||||
*
|
||||
* @see https://vuejs.org/
|
||||
* @see https://de.wikipedia.org/wiki/Single-Page-Webanwendung
|
||||
*
|
||||
* @author kevinfrantz
|
||||
*
|
||||
* @todo Write tests!
|
||||
*/
|
||||
class SPAController extends AbstractController
|
||||
{
|
||||
public function spa(Request $request): Response
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user