Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Du kan inte välja fler än 25 ämnen
Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
|
- <template>
- <section>
- <p>
- Your payment information is missing or no longer valid, please update your billing details.
- </p>
- <button @click="() => $emit('ok')">OK</button>
- </section>
- </template>
-
- <script setup>
- import { ref } from "vue"
-
- const emits = defineEmits(['ok'])
- </script>
-
- <style scoped>
- form > div {
- display: flex;
- justify-content: space-between;
- margin: 10px;
- position: relative;
- }
-
- button {
- margin: auto;
- min-width: 90px;
- display: block;
- }
-
- span.error {
- margin: 10px auto;
- color: darkred;
-
- }
- </style>
|