Compare commits
No commits in common. "3e289d83f9db98641f0f7f732b622dab9955f3a1" and "4a11fef0e0ad0940535fd1d6a1a57a829dc2b50d" have entirely different histories.
3e289d83f9
...
4a11fef0e0
Before Width: | Height: | Size: 77 KiB After Width: | Height: | Size: 77 KiB |
@ -14,7 +14,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { reactive } from 'vue'
|
import { defineProps, reactive } from 'vue'
|
||||||
|
|
||||||
defineProps({
|
defineProps({
|
||||||
msg: String
|
msg: String
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<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">
|
<section class="container px-4 py-24 mx-auto">
|
||||||
<div class="w-full mx-auto text-center">
|
<div class="w-full mx-auto text-center">
|
||||||
<img src="/favicon.png" class="h-32 mx-auto" />
|
<img src="/favicon.png" class="h-32 mx-auto" />
|
||||||
@ -25,7 +25,6 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import background_base64 from "../assets/background.jpg?inline";
|
|
||||||
import Footer from "@/components/Footer.vue";
|
import Footer from "@/components/Footer.vue";
|
||||||
console.log(config);
|
console.log(config);
|
||||||
</script>
|
</script>
|
@ -72,9 +72,11 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref, reactive } from "vue";
|
import { computed, ref, reactive, defineProps } from "vue";
|
||||||
import axios from "redaxios";
|
import axios from "redaxios";
|
||||||
import isEmail from 'validator/es/lib/isEmail';
|
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 { TYPE, useToast } from "vue-toastification";
|
||||||
import Footer from "@/components/Footer.vue";
|
import Footer from "@/components/Footer.vue";
|
||||||
|
|
||||||
|
@ -457,7 +457,7 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref, reactive } from "vue";
|
import { computed, ref, reactive, defineProps } from "vue";
|
||||||
import axios from "redaxios";
|
import axios from "redaxios";
|
||||||
import isEmail from "validator/es/lib/isEmail";
|
import isEmail from "validator/es/lib/isEmail";
|
||||||
import isMobilePhone from "validator/es/lib/isMobilePhone";
|
import isMobilePhone from "validator/es/lib/isMobilePhone";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user