Vue-Express

1、移动端常用UI组件库

1、Vant  https://youzan.github.io/vant

2、CodeUI  https://didi.github.io/cube-ui

3、MintUI http://mint-ui.github.io

PC 端常用UI组件库

1、ElementUI https://element.eleme.cn

2、IVIewUI https://www.iviewui.com

 

 

Express部分

1、npm init

2、npm i express

3、新建server.js

const express = require('express')

const app = express();

app.get('/person', (req, res) => {
    res.send({
        name: 'tom',
        age: 18
    })
});

app.listen(5005, (err) => {
    if (!err)
        console.log('服务器启动成功了')
})
 
4、node server
5、http://localhost:5005/person

posted on   四海骄阳  阅读(213)  评论(0编辑  收藏  举报

相关博文:
阅读排行:
· 全网最简单!3分钟用满血DeepSeek R1开发一款AI智能客服,零代码轻松接入微信、公众号、小程
· .NET 10 首个预览版发布,跨平台开发与性能全面提升
· 《HelloGitHub》第 107 期
· 从文本到图像:SSE 如何助力 AI 内容实时呈现?(Typescript篇)
· 全程使用 AI 从 0 到 1 写了个小工具
历史上的今天:
2018-07-07 Windows Power Shell

导航

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5
点击右上角即可分享
微信分享提示

喜欢请打赏

扫描二维码打赏

了解更多