Skip to content

Commit

Permalink
Del: dev code
Browse files Browse the repository at this point in the history
  • Loading branch information
LazyCreeper committed Oct 9, 2023
1 parent 1298dcf commit 1defb04
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/stores/room.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,29 +36,19 @@ export const roomStore = defineStore("roomStore", () => {
// 是否主动上报
const play = ref(true);

const count = ref(3);

// 在线人数
const peopleNum = ref(1);

const doubleCount = computed(() => count.value * 2);
function increment() {
count.value++;
}

const danmuku = ref({});

return {
count,
isDarkMode,
login,
movies,
totalMovies,
currentMovie,
currentMovieStatus,
play,
doubleCount,
increment,
danmuku,
peopleNum
};
Expand Down

0 comments on commit 1defb04

Please sign in to comment.