Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

afoysal's avatar

Add VueJS component to Blade file

How to add VueJS component to Blade file ?

It is working fine if I add component like below.

<div id="app">
    <example-component />
</div>

But it is not working if I add component like below.

<div class="container" id="app">
    <div class="row">
        <div class="col-md-12">
            <div id="loading">
                <div>
                    <div>
                        <example-component />
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
0 likes
1 reply
vincent15000's avatar

It's probably a problem with your id.

<div class="container">
    <div class="row">
        <div class="col-md-12">
            <div id="loading">
                <div>
                    <div id="app">
                        <example-component />
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>
1 like

Please or to participate in this conversation.