前言
我是歌谣 最好的种树是十年前 其次是现在 今天继续给大家带来的是原型的讲解 微信公众号关注前端小歌谣一起进入前端巅峰人才交流群
环境配置
npm init -y
yarn add vite -D
修改page.json配置端口
{
"name": "demo1",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "vite --port 3002"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"vite": "^4.4.9"
}
}
声明方式
const obj={}
function Obj1(){}
const obj1=new Obj1()
const obj2&