2018-11-05 21:40:16 -06:00
|
|
|
<template lang="pug">
|
|
|
|
|
nav.navbar.is-u-blue
|
|
|
|
|
div.navbar-brand
|
|
|
|
|
a.navbar-item PC PUMA
|
|
|
|
|
div.navbar-menu
|
|
|
|
|
div.navbar-start
|
|
|
|
|
router-link.navbar-item(to="/") Inicio
|
2018-11-16 06:15:49 -06:00
|
|
|
router-link.navbar-item(to="/carrito") Carrito
|
2018-11-12 18:43:21 -06:00
|
|
|
router-link.navbar-item(to="/usuario") Usuarios
|
2019-01-17 00:51:05 -06:00
|
|
|
router-link.navbar-item(to="/multa") Multas
|
2018-11-05 21:40:16 -06:00
|
|
|
div.navbar-end
|
|
|
|
|
div.navbar-item
|
2018-11-06 21:32:20 -06:00
|
|
|
a.button.is-u-golden(v-on:click='salir()')
|
2018-11-05 21:40:16 -06:00
|
|
|
strong Salir
|
2018-11-05 13:59:26 -06:00
|
|
|
</template>
|
2018-11-06 21:32:20 -06:00
|
|
|
<script>
|
|
|
|
|
export default {
|
|
|
|
|
methods: {
|
|
|
|
|
salir: function () {
|
|
|
|
|
window.localStorage.removeItem('pcpumaT')
|
|
|
|
|
window.localStorage.removeItem('pcpumaU')
|
2018-11-20 17:40:58 -06:00
|
|
|
window.localStorage.removeItem('pcpumaK')
|
2018-11-06 21:32:20 -06:00
|
|
|
this.$router.push('login')
|
|
|
|
|
}
|
2018-11-16 06:15:49 -06:00
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
login: function () {
|
|
|
|
|
if (window.localStorage.pcpumaT) {
|
|
|
|
|
return true
|
|
|
|
|
}
|
|
|
|
|
return false
|
|
|
|
|
}
|
2018-11-06 21:32:20 -06:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|