関数
VueComponentLoader::__construct( WCEXAAP\Aivec\Welcart\Generic\Views\VueComponent $component, bool $load )
ローダーオブジェクトを構築する
パラメータ パラメータ
- $component
(WCEXAAP\Aivec\Welcart\Generic\Views\VueComponent) (必須)
- $load
(bool) (必須)
ファイル: src/Components/VueComponentLoader.php
35 36 37 38 39 40 41 42 | public function __construct(VueComponent $component , $load ) { $this ->component = $component ; $this ->load = $load ; if ( $this ->load === true) { $this ->component->init(); } } |