Skip to content

Commit

Permalink
引数の修正
Browse files Browse the repository at this point in the history
  • Loading branch information
shota973 committed Jun 15, 2024
1 parent 7654177 commit a5140b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/RoomList.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { onMounted, ref } from 'vue'
import api,{GetRoomsInner,EnterRoom,EnterRoomSuccess} from '../lib/apis'
import api,{GetRoomsInner,EnterRoom,EnterRoomSuccess} from '@/lib/apis'
import { useStoreUser } from '@/stores/user';
const User = useStoreUser();
Expand All @@ -16,7 +16,7 @@ onMounted(async () => {
const res = await api.apiRoomsGet()
rooms.value = res.data
})
function BackSelectPage(roomName: string,roomId: string, isPublic: boolean){
function BackSelectPage(){
selectedRoomName.value = ""
selectedRoomId.value = ""
isSelectedRoomPublic.value = true
Expand Down

0 comments on commit a5140b1

Please sign in to comment.