diff options
| author | tamaina <tamaina@hotmail.co.jp> | 2022-07-14 23:32:00 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-14 23:32:00 +0900 |
| commit | 77c2a7cd71efea318f4fd7ba0ee54b32e9c8f7ba (patch) | |
| tree | 6d0a1ec613c01054ea6bc837b13932220e8aa030 /packages/client/src/components/global | |
| parent | use MkStickyContainer (#9000) (diff) | |
| download | sharkey-77c2a7cd71efea318f4fd7ba0ee54b32e9c8f7ba.tar.gz sharkey-77c2a7cd71efea318f4fd7ba0ee54b32e9c8f7ba.tar.bz2 sharkey-77c2a7cd71efea318f4fd7ba0ee54b32e9c8f7ba.zip | |
refactor(client): remove useCssModule (#8999)
* refactor(client): remove useCssModule()
* use MkStickyContainer
* Revert "use MkStickyContainer"
This reverts commit 639746786bb7e3342db9cbd3452854fc29aacf88.
Diffstat (limited to 'packages/client/src/components/global')
| -rw-r--r-- | packages/client/src/components/global/loading.vue | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/client/src/components/global/loading.vue b/packages/client/src/components/global/loading.vue index 5a7e362fcf..bcc6dfac01 100644 --- a/packages/client/src/components/global/loading.vue +++ b/packages/client/src/components/global/loading.vue @@ -16,9 +16,7 @@ </template> <script lang="ts" setup> -import { useCssModule } from 'vue'; - -useCssModule(); +import { } from 'vue'; const props = withDefaults(defineProps<{ inline?: boolean; |