Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- <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>
|