Skip to content

Commit

Permalink
🐞 fix: 测试部署示例
Browse files Browse the repository at this point in the history
  • Loading branch information
BBBboys committed Oct 1, 2024
1 parent e5b884a commit e16c5df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ git add -A
git commit -m "部署更新 $(date)"

# 添加远程仓库
git remote add origin git@github.com:pandavips/Vue3-Command-Dialog.git
git remote add origin https://github.com/pandavips/Vue3-Command-Dialog.git

# 强制推送到 gh-pages 分支
git push -f origin master:gh-pages
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import en from "element-plus/es/locale/lang/en";
import { provide, ref, computed } from "vue";
import Layout from "./Layout.vue";
provide("App", "来自App的🩷");
provide("App", "来自App的🩷~");
const language = ref("zh-cn");
const locale = computed(() => (language.value === "zh-cn" ? zhCn : en));
Expand Down

0 comments on commit e16c5df

Please sign in to comment.