Skouter mortgage estimates. Web application with view written in PHP and Vue, but controller and models in Go.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- <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>
|