Compare commits

..

No commits in common. "3e289d83f9db98641f0f7f732b622dab9955f3a1" and "4a11fef0e0ad0940535fd1d6a1a57a829dc2b50d" have entirely different histories.

5 changed files with 6 additions and 5 deletions

View File

Before

Width:  |  Height:  |  Size: 77 KiB

After

Width:  |  Height:  |  Size: 77 KiB

View File

@ -14,7 +14,7 @@
</template>
<script setup>
import { reactive } from 'vue'
import { defineProps, reactive } from 'vue'
defineProps({
msg: String

View File

@ -1,5 +1,5 @@
<template>
<div class="bg-cover bg-fixed m-0 h-screen" v-bind:style='{ backgroundImage: "url(" + background_base64 + ")", }'>
<div class="bg-cover bg-fixed m-0 h-screen" style="background-image: url('./background.jpg');">
<section class="container px-4 py-24 mx-auto">
<div class="w-full mx-auto text-center">
<img src="/favicon.png" class="h-32 mx-auto" />
@ -25,7 +25,6 @@
</template>
<script setup>
import background_base64 from "../assets/background.jpg?inline";
import Footer from "@/components/Footer.vue";
console.log(config);
</script>

View File

@ -72,9 +72,11 @@
</template>
<script setup>
import { computed, ref, reactive } from "vue";
import { computed, ref, reactive, defineProps } from "vue";
import axios from "redaxios";
import isEmail from 'validator/es/lib/isEmail';
import isMobilePhone from 'validator/es/lib/isMobilePhone';
import isPostalCode from 'validator/es/lib/isPostalCode';
import { TYPE, useToast } from "vue-toastification";
import Footer from "@/components/Footer.vue";

View File

@ -457,7 +457,7 @@
</template>
<script setup>
import { computed, ref, reactive } from "vue";
import { computed, ref, reactive, defineProps } from "vue";
import axios from "redaxios";
import isEmail from "validator/es/lib/isEmail";
import isMobilePhone from "validator/es/lib/isMobilePhone";