123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!-- -->
- <template>
- <div class='con'>
- <div class="logo">
- <vcenter>
- <img :src="require('@/assets/images/index_logo@2x.png')" alt="">
- </vcenter>
- </div>
- <div class="setting">
- <vcenter>
- <div>
- <i class="iconfont icon-zhuxiao"></i>
- <span @click="logout">注销</span>
- </div>
- </vcenter>
- </div>
- </div>
- </template>
- <script>
- // 这里可以导入其他文件(比如:组件,工具js,第三方插件js,json文件,图片文件等等)
- // 例如:import 《组件名称》 from '《组件路径》';
- import vcenter from '@/components/vcenter'
- export default {
- // import引入的组件需要注入到对象中才能使用
- components: {vcenter},
- data () {
- // 这里存放数据
- return {
- }
- },
- // 监听属性 类似于data概念
- computed: {},
- // 监控data中的数据变化
- watch: {},
- // 方法集合
- methods: {
- logout () {
- window.localStorage.setItem('zfb_token', '')
- this.$token = ''
- this.$alert('退出成功', '提示', {
- confirmButtonText: '确定',
- callback: action => {
- this.$router.push('/login')
- }
- })
- }
- },
- // 生命周期 - 创建完成(可以访问当前this实例)
- created () {
- },
- // 生命周期 - 挂载完成(可以访问DOM元素)
- mounted () {
- },
- beforeCreate () {}, // 生命周期 - 创建之前
- beforeMount () {}, // 生命周期 - 挂载之前
- beforeUpdate () {}, // 生命周期 - 更新之前
- updated () {}, // 生命周期 - 更新之后
- beforeDestroy () {}, // 生命周期 - 销毁之前
- destroyed () {}, // 生命周期 - 销毁完成
- activated () {} // 如果页面有keep-alive缓存功能,这个函数会触发
- }
- </script>
- <style lang="scss" scoped>
- @import './style.scss';
- </style>
|