[Vuejs]-Question concerning the combination of Laravel + Vue + <script> tags

0๐Ÿ‘

โœ…

As invisible-recaptcha โ€˜s documentation points out, you can render script tags separated from html.

Code example from documentation:

<-- head -->
{!! app('captcha')->renderPolyfill() !!}

<-- body -->
{!! app('captcha')->renderCaptchaHTML() !!}

<-- footer -->
{!! app('captcha')->renderFooterJS('en') !!}

Leave a comment