Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- <template>
- <div class="page">
-
- <section class="inputs centered">
- <h4>Are you sure you want to log out?</h4>
- <button @click="logout">Logout</button>
- </section>
-
- </div>
- </template>
-
- <script>
- function logout() {
- document.cookie= "skouter="
- window.location.reload()
- }
-
- export default {
- methods: {
- logout
- }
- }
- </script>
|