mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-27 07:33:08 +02:00
wip
This commit is contained in:
parent
4be168ad51
commit
fad3132d18
2 changed files with 12 additions and 12 deletions
|
@ -1,12 +0,0 @@
|
||||||
<mk-home-customize-page>
|
|
||||||
<mk-home ref="home" mode="timeline" customize={ true }/>
|
|
||||||
<style lang="stylus" scoped>
|
|
||||||
:scope
|
|
||||||
display block
|
|
||||||
</style>
|
|
||||||
<script lang="typescript">
|
|
||||||
this.on('mount', () => {
|
|
||||||
document.title = 'Misskey - ホームのカスタマイズ';
|
|
||||||
});
|
|
||||||
</script>
|
|
||||||
</mk-home-customize-page>
|
|
12
src/web/app/desktop/views/pages/home-custmize.vue
Normal file
12
src/web/app/desktop/views/pages/home-custmize.vue
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
<template>
|
||||||
|
<mk-home customize/>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts">
|
||||||
|
import Vue from 'vue';
|
||||||
|
export default Vue.extend({
|
||||||
|
mounted() {
|
||||||
|
document.title = 'Misskey - ホームのカスタマイズ';
|
||||||
|
}
|
||||||
|
});
|
||||||
|
</script>
|
Loading…
Reference in a new issue