7 lines
201 B
JavaScript
7 lines
201 B
JavaScript
|
|
import { ref } from "vue";
|
||
|
|
|
||
|
|
const token = ref(""); // 定义一个响应式全局变量
|
||
|
|
const userId=ref(1);
|
||
|
|
const videoId=ref(1);
|
||
|
|
const videoName=ref("");
|
||
|
|
export default token; // 导出全局变量
|