Skip to content
On this page

5 月 18 日

  • 部署测试环境

5 月 17 日

5 月 16 日

  • 大致的了解了 ivx:
    1. 是一种新的编程语言,更多的是通过配置
    1. 底层代码是 react 和 go
    1. 需要重点学习的应该是原理和设计,系统架构
    1. 使用上应该并不复杂,重点学习自定义和事件面板,编译各平台
  • 排查 mp-h5 dev 项目修改 ts 类型不会热更新问题
    1. 排查思路大致为使用其他的项目进行配置替换,看是否会热更新
    1. 未解决,可能是 ts 类型的问题,需要研究下

5 月 15 日

5 月 14 日

5 月 12 日

  • 获取 vue 组件传入的插槽:useSlots

  • 将博客通过 vuepress 部署到 github,并解决部署错误,应该是 github Action 更新了提示是 pnpm 锁文件错误,提交上去后会显示不支持 pnpm.lock 文件,修改 togithub.yml 文件

    name: build to my github
    on:
    push:
    branches: - main
    jobs:
    deploy:
    runs-on: ubuntu-latest # strategy: # matrix: # node-version: [node16]
    steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3
    with:
    node-version: 16 - name: Install PNPM
    run: npm i -g pnpm - name: Install & Build
    run: pnpm install --no-frozen-lockfile && pnpm run build
    
        # - name: CreateTag
        #   run git tag -a
        - name: Deploy
          uses: peaceiris/actions-gh-pages@v3
          with:
            github_token: ${{ secrets.GITHUB_TOKEN }}
            publish_dir: docs/.vitepress/dist

5 月 11 日

5 月 10 日

Released under the MIT License.