| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 8 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 16 | class VueJS extends AbstractVueJS { |
||
| 17 | |||
| 18 | protected array $configuration; |
||
| 19 | protected string $varName; |
||
| 20 | |||
| 21 | public function __construct(array $configuration = ['el' => '#app'], string $varName = "app", bool $useVuetify = false) { |
||
| 28 | } |
||
| 29 | } |
||
| 30 | |||
| 31 | protected function generateVueObject(string $object): string { |
||
| 32 | $vueObject = "new Vue(" . $object . ")"; |
||
| 33 | return JsUtils::cleanJSONFunctions($vueObject); |
||
| 34 | } |
||
| 35 | |||
| 36 | public function __toString(): string { |
||
| 40 | } |
||
| 41 | } |