mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 05:37:22 +01:00
24 lines
372 B
Vue
24 lines
372 B
Vue
<template lang='pug'>
|
|
.static-view(v-html="html")
|
|
</template>
|
|
|
|
<style lang='scss'>
|
|
@import '~client/assets/scss/static.scss';
|
|
</style>
|
|
|
|
<script>
|
|
import axios from 'axios';
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
html: '',
|
|
};
|
|
},
|
|
async mounted () {
|
|
let response = await axios.get('/api/v4/news');
|
|
this.html = response.data.html;
|
|
},
|
|
};
|
|
</script>
|