初始化

This commit is contained in:
砂糖
2025-11-08 10:38:36 +08:00
commit 3beeec7296
1626 changed files with 198488 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<template>
<div></div>
</template>
<script>
export default {
name: 'Redirect',
components: {
},
data () {
return {
}
},
created () {
if(this.$route.query.edit=='source'){
this.$router.push(window.BS_CONFIG.routers?.SourceUrl||'/big-screen-source')
}else{
this.$router.push(window.BS_CONFIG.routers?.componentUrl || '/big-screen-components')
}
},
methods: {
}
}
</script>
<style lang="scss" scoped>
</style>