diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-03-23 17:30:14 +0900 |
| commit | d6e23b803b10a471bb5b1054b357c70a16e8f6da (patch) | |
| tree | 111c870777d931cc56b5e34553e1b286bb2ba78c /src/client/components/notes.vue | |
| parent | refactor(build): gulpを経由しないでTypeScriptのビルドを行うよ... (diff) | |
| download | misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.gz misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.tar.bz2 misskey-d6e23b803b10a471bb5b1054b357c70a16e8f6da.zip | |
refactor: Tweak path alias of client
Diffstat (limited to 'src/client/components/notes.vue')
| -rw-r--r-- | src/client/components/notes.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/components/notes.vue b/src/client/components/notes.vue index 332f00e5db..80a9502d5f 100644 --- a/src/client/components/notes.vue +++ b/src/client/components/notes.vue @@ -29,10 +29,10 @@ <script lang="ts"> import { defineComponent } from 'vue'; -import paging from '@/scripts/paging'; +import paging from '@client/scripts/paging'; import XNote from './note.vue'; import XList from './date-separated-list.vue'; -import MkButton from '@/components/ui/button.vue'; +import MkButton from '@client/components/ui/button.vue'; export default defineComponent({ components: { |