Home > Web Front-end > uni-app > body text

How to quickly build a uni-app project? Two construction methods are shared

青灯夜游
Release: 2022-01-13 18:45:58
forward
11043 people have browsed it

How to quickly build a uni-app project? The following article will introduce you to two methods of building a uni-app project from scratch. I hope it will be helpful to you!

How to quickly build a uni-app project? Two construction methods are shared

uni-app is a front-end framework that uses Vue.js to develop cross-platform applications. Developers write a set of codes that can be compiled to iOS, Android, H5, small programs and other platforms.

Method 1: Use HBuilderX to quickly develop and run

Step 1: Prepare the HbuilderX tool

The uni-app official website has relevant introductions. You need to download the app development version of the HbuilderX tool.

Step 2: Create a new uni-app project and select the empty project.

How to quickly build a uni-app project? Two construction methods are shared

The folder structure in the default template project of uni-app is as follows:

How to quickly build a uni-app project? Two construction methods are shared

  • pages---Used to store the page file path;
  • static---Referenced static resource directory, such as pictures, videos and other files;
  • App.vue --- Application configuration, used to configure global styles and monitoring files;
  • main.js---- Vue initialization entry file;
  • mainfest.json----Configure application name, Appid, logo, version and other packaging information files;
  • pages.json---- Configure page routing, navigation bar, tab and other page information files.

Step 3: Run the project.

Click the [Run] option in the toolbar and select a different running environment in the drop-down box. You can refer to the official website for steps.

Because the latest project is on the WeChat side, here we will introduce the relevant matters related to the operation of the WeChat side.

Run in the WeChat Developer Tools: Enter the hello-uniapp project, click Run on the toolbar -> Run to the mini program simulator -> WeChat Developer Tools, you can run it in the WeChat Developer Tools Experience uni-app.

How to quickly build a uni-app project? Two construction methods are shared

Note: If it is the first time to use it, you need to configure the relevant path of the mini program ide before it can run successfully. In HbuilderX, you need to go to Tools->Configuration->Run Configuration, find the mini program running configuration, and copy the WeChat developer tool path into it.

How to quickly build a uni-app project? Two construction methods are shared

Method 2: Use scaffolding to quickly build and develop

  • Global Installation: npm i -g @vue/cli (you can skip this step if you have installed it before ->2): Because uni-app is based on vue3.0 or above, you need to update vue to the appropriate version;

  • Create project: vue create -p dcloudio/uni-preset-vue my-project (the name of the project you created)

Follow the prompts and enter directly;

  • to start (WeChat Mini Program): npm run dev:mp-weixin

  • WeChat Mini Program Developer Tools Import projects: Mini program projects need to be imported manually.

Recommended: "uniapp tutorial"

The above is the detailed content of How to quickly build a uni-app project? Two construction methods are shared. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:juejin.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!