+
+ {{ label }}
+ built with Vite
+
+
+
+
+
+
diff --git a/resources/js/vite/sample/app.js b/resources/js/vite/sample/app.js
new file mode 100644
index 0000000000..638b4603c4
--- /dev/null
+++ b/resources/js/vite/sample/app.js
@@ -0,0 +1,29 @@
+import '../../../css/vite/app.css';
+import Vue from 'vue';
+import DemoBadge from '../components/DemoBadge.vue';
+
+const mountEl = document.getElementById('vite-demo-app');
+
+if (mountEl) {
+ // eslint-disable-next-line no-new
+ new Vue({
+ el: mountEl,
+ components: {
+ DemoBadge,
+ },
+ data() {
+ return {
+ title: 'Vite + Vue 2',
+ ticks: 0,
+ };
+ },
+ mounted() {
+ this._timer = setInterval(() => {
+ this.ticks += 1;
+ }, 1000);
+ },
+ beforeDestroy() {
+ clearInterval(this._timer);
+ },
+ });
+}
diff --git a/resources/views/auth/partials/auth-language-scripts-minimal.blade.php b/resources/views/auth/partials/auth-language-scripts-minimal.blade.php
index ffd2e23558..00af61257f 100644
--- a/resources/views/auth/partials/auth-language-scripts-minimal.blade.php
+++ b/resources/views/auth/partials/auth-language-scripts-minimal.blade.php
@@ -1,6 +1,7 @@
+henry
@foreach(GlobalScripts::getScripts() as $script)
@if (strpos($script, '/vendor/processmaker/packages/package-dynamic-ui/js/global.js') !== 0)
-
+
@endif
@endforeach
+@include('auth.partials.auth-language-scripts-minimal')
+