# To create a new view:
1.  window._pageMounters = window._pageMounters || {};
    window._pageMounters.widgets = function () {

2. Inside mounted:
    try{
        const spinnerAjax = document.getElementById("ajaxNavigationLoader");
        spinnerAjax.style.display = "none";
    }
    catch(e){}

3. At the end of the script, call the mountPage:
    if (window._tryMountPageApp) {
        window._tryMountPageApp();
    }

4. Add mountpage.js script: <script type="module" src="{% static 'js/mountPage.js' %}"></script>
