Vue学习笔记-从0到1搭建实战项目

Posted wyx100

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Vue学习笔记-从0到1搭建实战项目相关的知识,希望对你有一定的参考价值。

新建项目

vue create hello1

注:项目名称不能有大写字母(Warning: name can no longer contain capital letters)

新建项目

vue create hello1

http://localhost:8080/

vscode导入文件

用vscode导入文件

新增页面

1.新增文件views/introduce.vue

<template>
  <div class="introduce">
    <h1>This is an introduce page</h1>
  </div>
</template>

2.App.vue新增代码

<template>
  <div id="app">
    <div id="nav">
      <router-link to="/">Home</router-link> |
      <router-link to="/about">About</router-link> |
      <router-link to="/introduce">Introduce</router-link>
    </div>
    <router-view/>
  </div>
</template>

<style lang="scss">
#app 
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  color: #2c3e50;


#nav 
  padding: 30px;

  a 
    font-weight: bold;
    color: #2c3e50;

    &.router-link-exact-active 
      color: #42b983;
    
  

</style>

3.修改router/index.js文件

 

import Vue from 'vue'
import VueRouter from 'vue-router'
import Home from '../views/Home.vue'

Vue.use(VueRouter)

const routes = [
  
    path: '/',
    name: 'Home',
    component: Home
  ,
  
    path: '/about',
    name: 'About',
    // route level code-splitting
    // this generates a separate chunk (about.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
  ,
  
    path: '/introduce',
    name: 'Introduce',
    // route level code-splitting
    // this generates a separate chunk (about.[hash].js) for this route
    // which is lazy-loaded when the route is visited.
    component: () => import(/* webpackChunkName: "introduce" */ '../views/Introduce.vue')
  
]

const router = new VueRouter(
  mode: 'history',
  base: process.env.BASE_URL,
  routes
)

export default router

4.效果展示

 

参考

官网

https://cli.vuejs.org/

https://github.com/vuejs

中文

https://vuex.vuejs.org/zh/

vue开发----npm run dev 报错:missing script:dev

第一个页面

vue-cli 3.0 安装和创建项目教程

[Springboot+Vue]做一个权限管理后台(七):动态加载后台菜单   代码下载

 

常用指令

1.安装脚手架

npm install -g @vue/cli

2.查看vue版本

vue -V;

vue --version

后面的V是大写。

3.安装vuex

npm install vuex --save

以上是关于Vue学习笔记-从0到1搭建实战项目的主要内容,如果未能解决你的问题,请参考以下文章

vue.js从基础到一步步搭建项目实战

《vue.js从入门到项目实战》的项目实战笔记

VUE项目实战学习目标以及概述

egg.js + react + zarm ui + vite2.0 全栈项目实战:从 0 到 1 实现记账本小册学习笔记合集(完结)

egg.js + react 实战:从 0 到 1 实现记账本小册学习笔记合集(持续更新中)

前后端分离项目实战从零构建后一个完整的后台项目之vue的学习