摘要: chmod 777 node_modules chmod 777 node_modules/.bin/vue-cli-service 阅读全文
posted @ 2024-11-21 08:27 deajax 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 问题node_modules/.bin/vue-cli-service: Permission denied 原因, 权限不足. 解决方案chmod 777 node_modules/.bin/vue-cli-service 这里的chmod 777 是给启动服务提高权限。 注意赋权路径一定要相同 阅读全文
posted @ 2024-10-29 16:33 deajax 阅读(41) 评论(0) 推荐(0) 编辑
摘要: <ul class="[&_li]:mb-4 [&_li_a:hover]:text-blue-600"> <li><a href="#"></a></li> </ul> 也可以规定具体的class名 <ul class="[&.wrap_li]:mb-4 [&.wrap_li_a:hover]:t 阅读全文
posted @ 2024-08-02 17:36 deajax 阅读(51) 评论(0) 推荐(0) 编辑
摘要: html部分 1 <div class="scroll-table"> 2 <div class="scroll-table-header"> 3 <table class="scroll-table-header__table"> 4 <colgroup> 5 <col style="width: 阅读全文
posted @ 2023-11-07 10:37 deajax 阅读(322) 评论(0) 推荐(0) 编辑
摘要: <script setup> import { onBeforeUnmount, onMounted } from 'vue'; // 设置页面背景颜色 onMounted(() => { document .querySelector("body") .setAttribute("style", 阅读全文
posted @ 2023-09-27 08:39 deajax 阅读(638) 评论(0) 推荐(1) 编辑
摘要: # cli 创建项目mpx create mpx-project# 切换到新的 mpx-project 中cd mpx-project把 @mpxjs/webpack-plugin 版本改为 2.8.32 # 安装包yarn 执行: yarn add -D tailwindcss weapp-tai 阅读全文
posted @ 2023-07-20 10:08 deajax 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 第一次尝试成功,可以使用部分基础类属性 1、新建一个项目目录,再在目录里新建小程序项目。 2、整个项目使用vscode打开,npm init 初始化npm。 3、安装tailwind、postcss autoprefixer npm install -D tailwindcss@latest pos 阅读全文
posted @ 2023-07-11 16:21 deajax 阅读(1307) 评论(0) 推荐(0) 编辑
摘要: 修改文件 tailwind.config.js module.exports = { ... ... corePlugins: { preflight: false } } 阅读全文
posted @ 2023-06-28 13:30 deajax 阅读(158) 评论(0) 推荐(0) 编辑
摘要: <meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, viewport-fit=cover"> 阅读全文
posted @ 2023-06-07 19:48 deajax 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 原文: Hey! The Intellisense extension does need a config file to work today. I would suggest creating one in your project root to enable the extension. 阅读全文
posted @ 2023-05-29 20:33 deajax 阅读(963) 评论(0) 推荐(0) 编辑