实现基本的前端朋友圈功能

This commit is contained in:
Qi 2025-03-27 22:57:45 +08:00
parent ff3d02d3b8
commit 952d30af78
5 changed files with 1059 additions and 23 deletions

BIN
src/assets/user/1.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 501 KiB

BIN
src/assets/user/2.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 307 KiB

BIN
src/assets/user/3.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 767 KiB

File diff suppressed because it is too large Load Diff

View File

@ -1,11 +1,12 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
})
module.exports = {
transpileDependencies: true,
//publicPath: 'http://localhosst:3100', // 这里控制静态资源的前缀路径
devServer: {
port: 3100, // 将默认端口 3100
host: 'localhost', // 可选:设置为 '0.0.0.0' 后台访问
open: true // 自动打开浏览器
}
}