Vue之初识:使用idea第一个Vue项目

文章目录

  • 创建项目
  • 创建项目之后:自动编译
  • 创建项目之后:初始项目架构
  • 项目启动
    • 方式1
    • 方式2:npm run serve

创建项目

Vue之初识:使用idea第一个Vue项目_第1张图片

Vue之初识:使用idea第一个Vue项目_第2张图片

Vue之初识:使用idea第一个Vue项目_第3张图片

创建项目之后:自动编译

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.3Creating 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

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

https://blog.csdn.net/u014636209/article/details/123705113

项目启动

方式1

Vue之初识:使用idea第一个Vue项目_第4张图片
Vue之初识:使用idea第一个Vue项目_第5张图片

方式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.


你可能感兴趣的:(idea,使用idea创建vue项目,idea,vue)