欢迎来到代码驿站!

vue

当前位置:首页 > 网页前端 > vue

使用idea创建第一个Vue项目

时间:2022-09-17 10:28:41|栏目:vue|点击:

创建项目

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

创建项目之后:自动编译

sr/local/bin/node /usr/local/lib/node_modules/npm/bin/npx-cli.js --yes --package @vue/cli vue create --default .
npm WARN deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated
npm WARN deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated
npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated
npm WARN deprecated graphql-extensions@0.15.0: The `graphql-extensions` API has been removed from Apollo Server 3. Use the plugin API instead: https://www.apollographql.com/docs/apollo-server/integrations/plugins/
npm WARN deprecated apollo-tracing@0.15.0: The `apollo-tracing` package is no longer part of Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#tracing for details
npm WARN deprecated apollo-cache-control@0.14.0: The functionality provided by the `apollo-cache-control` package is built in to `apollo-server-core` starting with Apollo Server 3. See https://www.apollographql.com/docs/apollo-server/migration/#cachecontrol for details.
npm WARN deprecated subscriptions-transport-ws@0.9.19: The `subscriptions-transport-ws` package is no longer maintained. We recommend you use `graphql-ws` instead. For help migrating Apollo software to `graphql-ws`, see https://www.apollographql.com/docs/apollo-server/data/subscriptions/#switching-from-subscriptions-transport-ws    For general help using `graphql-ws`, see https://github.com/enisdenjo/graphql-ws/blob/master/README.md
npm WARN deprecated graphql-tools@4.0.8: This package has been deprecated and now it only exports makeExecutableSchema.\nAnd it will no longer receive updates.\nWe recommend you to migrate to scoped packages such as @graphql-tools/schema, @graphql-tools/utils and etc.\nCheck out https://www.graphql-tools.com to learn what package you should use instead


Vue CLI v5.0.3
? Generate project in current directory? Yes


Vue CLI v5.0.3
?  Creating project in /Users/gaoxinfu/Github/gaoxinfu/vue-sample.
?  Initializing git repository...
??  Installing CLI plugins. This might take a while...


added 859 packages in 46s
?  Invoking generators...
?  Installing additional dependencies...


added 97 packages in 12s
?  Running completion hooks...

?  Generating README.md...

?  Successfully created project vue-sample.
?  Get started with the following commands:

 $ npm run serve

Done

创建项目之后:初始项目架构

目录 说明
node_modules 依赖包文件夹
public  
src  
src/routes 前端路由
src/assets css、image、svg等资源
src/components 编写vue代码的文件夹,具体vue的文件都放在这里一般
package.json npm配置 参考 https://juejin.cn/post/6870426598605062152
pachage-lock.json 1、锁定安装时的包的版本号,需要上传到git,保证大家的依赖包一致。2、package-lock.json 是在 npm install时候生成一份文件,用来记录当前状态下实际安装的各个npm package的具体来源和版本号。
babel.config.js babel配置 Babel 是一个工具链,主要用于将采用 ECMAScript 2015+ 语法编写的代码转换为向后兼容的 JavaScript 语法,以便能够运行在当前和旧版本的浏览器或其他环境中 ,可以参考label的介绍 https://www.babeljs.cn/docs/
jsconfig.json 目录中出现 jsconfig.json 文件表明该目录是 JavaScript 项目的根目录 文件目录检索做智能提示
README.md 项目介绍
index.html 入口页面

在这里插入图片描述

项目启动

方式1

在这里插入图片描述

在这里插入图片描述

方式2:npm run serve

gaoxinfudeMacBook-Pro:vue-sample gaoxinfu$ npm run serve

> vue-sample@0.1.0 serve
> vue-cli-service serve

 INFO  Starting development server...


 DONE  Compiled successfully in 3048ms                                                                                                                            9:28:14 PM


  App running at:
  - Local:   http://localhost:8081/ 
  - Network: http://192.168.0.198:8081/

  Note that the development build is not optimized.
  To create a production build, run npm run build.

上一篇:vue调用摄像头进行拍照并能保存到本地的方法

栏    目:vue

下一篇:ElementUI 复杂顶部和左侧导航栏实现示例

本文标题:使用idea创建第一个Vue项目

本文地址:http://www.codeinn.net/misctech/213887.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有