摘要:
问题描述: 现有两个文件: profile.js test.html 运行结果: test.html:9 Uncaught SyntaxError: Unexpected token { 问题解答: 在HTML文件中不能使用export,import,需要在webpack构建项目中使用,并且只作用于 阅读全文
摘要:
常用命令 创建项目:yarn init 安装依赖包:yarn == yarn install 添加依赖包:yarn add 配置淘宝镜像:yarn config set registry "https://registry.npm.taobao.org" Yarn命令列表 来源: http://do 阅读全文
摘要:
npm yarn 说明 npm init yarn init npm install yarn install/yarn npm install -g <package> yarn global add <package> 全局安装依赖 npm install --save <package> 或者 阅读全文
摘要:
一、Nginx下载与安装 1、nginx官方下载地址:http://nginx.org/ 2、下载完后将压缩包解压即可 3、nginx配置文件为根目录下conf\nginx.conf 二、Nginx常用命令说明 cmd进入nginx安装目录 三、Nginx配置文件详解 阅读全文
摘要:
问题描述: main.js 为什么已经定义了 components: { App } ,还需要 template: '<App/>' ? 问题解答: el: '#app' :是指向 index.html 的<div id="app"></div>元素,该元素作为vue的挂载点 components 阅读全文