vue中h5页面的搭建

在工作中可能会遇到h5页面的搭建,本篇文章主要讲解如何从零开始搭建一个vue项目,实现h5页面的适配,浏览器默认样式的清除,路由的配置,项目的打包等,那就让我们开始学习吧。

如果大家只是需要一个完整的项目框架进行开发的话推荐看这一篇文章(可直接下载使用)Vue搭建移动端h5项目(已开源,附带git地址)Vant+Vue Router+Vuex+axios封装+案例交互+部分代码说明

一、vue项目的搭建

1.vue-cli的安装方法

全局安装vue-cli:
npm install -g @vue/cli

or

yarn global add @vue/cli

检测安装:

vue -V

2.通过vue-cli快速搭建项目
vue ui

3.删除无用代码,这个一个基础的vue项目就搭建好了

二、页面适配去默认样式清除

        1.清除浏览器默认样式

清除浏览器默认样式
/**
 * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
 * http://cssreset.com
 */
 html, body, div, span, applet, object, iframe,
 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
 a, abbr, acronym, address, big, cite, code,
 del, dfn, em, img, ins, kbd, q, s, samp,
 small, strike, strong, sub, sup, tt, var,
 b, u, i, center,
 dl, dt, dd, ol, ul, li,
 fieldset, form, label, legend,
 table, caption, tbody, tfoot, thead, tr, th, td,
 article, aside, canvas, details, embed,
 figure, figcaption, footer, header,
 menu, nav, output, ruby, section, summary,
 time, mark, audio, video, input {
     margin: 0;
     padding: 0;
     border: 0;
     font-size: 100%;
     font-weight: normal;
     vertical-align: baseline;
 }
 
 /* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure,
 footer, header, menu, nav, section {
     display: block;
 }
 
 body {
     line-height: 1;
 }
 
 blockquote, q {
     quotes: none;
 }
 
 blockquote:before, blockquote:after,
 q:before, q:after {
     content: none;
 }
 
 table {
     border-collapse: collapse;
     border-spacing: 0;
 }
 
 /* custom */
 a {
     color: #7e8c8d;
     text-decoration: none;
     -webkit-backface-visibility: hidden;
 }
 
 li {
     list-style: none;
 }
 
 ::-webkit-scrollbar {
     width: 5px;
     height: 5px;
 }
 
 ::-webkit-scrollbar-track-piece {
     background-color: rgba(0, 0, 0, 0.2);
     -webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:vertical {
     height: 5px;
     background-color: rgba(125, 125, 125, 0.7);
     -webkit-border-radius: 6px;
 }
 
 ::-webkit-scrollbar-thumb:horizontal {
     width: 5px;
     background-color: rgba(125, 125, 125, 0.7);
     -webkit-border-radius: 6px;
 }
 
 html, body {
     width: 100%;
 }
 
 body {
     -webkit-text-size-adjust: none;
     -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 }
 html{
     height: 100%;
     width: 100%;
     background: #f3f3f3;
 }




在主入口main.js文件中引入
import "../src/assets/style/reset.css"

        2.实现页面自适应(rem方式在750下1rem=100px)

在index.html文件中进行配置

三、路由配置(vue-router)

1.安装
yarn add vue-router  或 npm i vue-router
2.配置新建router文件夹(index.js)
import Vue from 'vue'
import Router from 'vue-router'
import service from "@/views/service"
import HelloWorld from "@/views/HelloWorld"
Vue.use(Router)

export default new Router({
    routes: [
        {
            path: "/",
            component: service
        },
        {
            path: "/HelloWorld",
            component: HelloWorld
        }
    ]
})




        main.js
import Vue from 'vue'
import App from './App.vue'
import router from '../router'

import "../src/assets/style/reset.css"

Vue.config.productionTip = false


new Vue({
  router,
  render: h => h(App),
}).$mount('#app')


四、打包(yarn build)

你可能感兴趣的:(vue.js,javascript)