mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-18 08:12:15 +00:00
42 lines
950 B
Vue
42 lines
950 B
Vue
<template>
|
|
<PageTab>
|
|
<PageTabGroup>
|
|
<FormLabel>{{ $t('user_token.title') }}</FormLabel>
|
|
</PageTabGroup>
|
|
</PageTab>
|
|
</template>
|
|
|
|
<script>
|
|
import PageTabGroup from '@/components/Others/Layout/PageTabGroup'
|
|
import FormLabel from '@/components/Others/Forms/FormLabel'
|
|
import PageTab from '@/components/Others/Layout/PageTab'
|
|
|
|
export default {
|
|
name: 'AccessToken',
|
|
components: {
|
|
PageTabGroup,
|
|
FormLabel,
|
|
PageTab
|
|
},
|
|
data () {
|
|
return {
|
|
tokens: undefined
|
|
}
|
|
},
|
|
created () {
|
|
axios.
|
|
get('/api/user/tokens')
|
|
.then(response => {
|
|
this.tokens = response.data
|
|
})
|
|
}
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
@import '@assets/vuefilemanager/_variables';
|
|
@import '@assets/vuefilemanager/_mixins';
|
|
|
|
</style>
|