Giter Site home page Giter Site logo

webterminal's Introduction

webTerminal

  • Vue3 + Ts + vite +antD-V + pinia
  • 实现你想实现的指令
  • 回车即可执行

灵感来源

学习心得

0.env.d.ts

    /// <reference types="vite/client" />

    // 为Vue文件生命类型模块,记住就行,这样在import vue组件时vscode不报错
    declare module '*.vue' {
        import type { DefineComponent } from 'vue'
        // eslint-disable-next-line @typescript-eslint/no-explicit-any, @typescript-eslint/ban-types
        const component: DefineComponent<{}, {}, any>
        export default component
    }

1.Ts命名空间实现类型说明模块化

2.antD-V的基本使用

3.防抖与节流实现

4.getopt库的基本使用

  • option配置
  • 参数配置
  • 获取解析后的参数

5.页面组件与指令分离的设计模式

  • defineAsyncComponent的使用
  • 指令的设计
  • 父子指令的调用关系

6.store持久化

7.StyleValue类型的使用

8.自定义hooks

  • useHint
  • useHistory
  • useDebounce

9.Porps参数的接受与默认值

10.website命令的设计模式

  • Vue组件完成负责数据操作
  • Command命令完成数据展示

11.初次体验讲前端项目Chorme插件化

  • 取消路由使用
  • 打包项目
  • dist文件下新增manifest.json文件
  • 配置manifest.json

12.上传本地图片作为背景图片

    let imageObj = (img.files[0])
    let fr = new FileReader() //异步读取文件对象

    fr.readAsDataURL(imageObj)  //读取为data:url数据流
    fr.onloadend = function(){
        // 把base64数据存放到localStorage中
        localStorage.setItem("imgBase",fr.result)
    }

webterminal's People

Contributors

searc-h avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.