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