摘要: <style> * { margin: 0; padding: 0; } .container { width: 350px; border: 1px solid red; display: flex; flex-wrap: wrap; justify-content: space-between; 阅读全文
posted @ 2021-09-24 22:26 吴小明- 阅读(211) 评论(0) 推荐(0) 编辑
摘要: html: <style> .div { width: 200px; height: 200px; background-color: greenyellow; } </style> </head> <body> <div class="div">一些文字</div> <script> const 阅读全文
posted @ 2021-09-24 21:45 吴小明- 阅读(457) 评论(0) 推荐(0) 编辑
摘要: vue.config.js: devServer: { before: function (app) { app.get('/aaa', (req, res) => { res.json({ errno: 0, data: { id: 1, name: '小明' } }) }) } } App.vu 阅读全文
posted @ 2021-09-24 20:46 吴小明- 阅读(231) 评论(0) 推荐(0) 编辑