首页 > 其他分享 >Vue实战案例

Vue实战案例

时间:2023-04-28 19:34:42浏览次数:48  
标签:实战 11 vue name flex component 案例 Vue path

Vue项目案例

结合之前学习的 vue.js、脚手架、vuex、vue-router、axios、elementui 等知识点,来开发前端项目案例(仅前端不含后端)。

1.项目搭建

其实就是将我们项目需要用到的组件都安装并配置好,需要做的事有:

  • 创建项目 & 运行项目

    vue create 项目名称
    npm run serve
    
    WebStorm集成开发环境
    
  • 安装和配置 vue-router

    npm install vue-router@3
    手动创建文件和配置
    
    vue add router
    
  • 安装和配置 vuex

    npm install vue-vuex@3
    手动创建文件和配置
    
    vue add vuex
    
  • 安装和配置 elementui

    npm install element-ui
    手动创建文件和配置
    
    vue add element
    

2.登录

<template>
  <div class="main">
    <div class="loginBox">
      <div class="tabBoxSwitch">
        <ul class="tabBoxSwitchUl">
          <li :class="tabSelected===idx ? 'tab-active': ''" v-for="(item, idx) in tabList" :key="idx"
              @click="changeTab(idx)">{{ item }}
          </li>
        </ul>
      </div>

      <div v-show="tabSelected===0">
        <!-- :model绑定form数据  :rules设置验证规则  ref绑定表格验证   -->
        <el-form :model="UserForm" :rules="userRules" ref="userForm">
          <el-form-item prop="username" style="margin-top: 24px;">
            <!-- v-model双向绑定 便于下面对于字段的验证 -->
            <el-input v-model="UserForm.username" placeholder="用户名或手机号"></el-input>
          </el-form-item>
          <el-form-item prop="password">
            <el-input v-model="UserForm.password" placeholder="密码" show-password></el-input>
          </el-form-item>
          <el-form-item>
            <el-button type="primary" @click="onSubmit('userForm')" size="medium">登录</el-button>
          </el-form-item>
        </el-form>
      </div>

      <div v-show="tabSelected===1">
        <el-form :model="smsForm" :rules="smsRule" ref="smsForm">
          <el-form-item prop="phone" style="margin-top: 24px;">
            <el-input v-model="smsForm.phone" placeholder="手机号"></el-input>
          </el-form-item>
          <el-form-item prop="code">
            <el-row type="flex" justify="space-between">
              <el-input v-model="smsForm.code" placeholder="验证码"></el-input>
              <el-button :disabled="disabledAttr" @click="smsCodeSend" type="success" size="medium"
                         style="margin-left: 10px">
                {{ smsText }}
              </el-button>
            </el-row>
          </el-form-item>
          <el-form-item>
            <el-button type="primary" @click="onSubmit('smsForm')" size="medium">登录</el-button>
          </el-form-item>
        </el-form>
      </div>

    </div>
  </div>

</template>

<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "Login",

  data: function () {
    return {
      tabSelected: 0,
      tabList: ["密码登录", "免密码登录"],
      disabledAttr: false,
      smsText: "请输入验证码",
      UserForm: {  // 绑定form
        username: "",
        password: ""
      },
      smsForm: {
        phone: "",
        code: ""
      },
      userRules: {  // 密码登录的验证规则
        username: [
          {required: true, message: '请输入用户名或手机号', trigger: 'blur'},
          {min: 3, message: '长度应该大于3', trigger: 'blur'}
        ],
        password: [
          {required: true, message: '请输入密码', trigger: 'blur'},
          {min: 3, message: '长度应该大于3', trigger: 'blur'}
        ],
      },
      smsRule: {  // 密码登录的验证规则
        phone: [
          {required: true, message: '请输入手机号', trigger: 'blur'},
          {pattern: /^1[3456789]\d{9}$/, message: '手机号格式错误', trigger: 'blur'},
        ],
        code: [
          {required: true, message: '请输入验证码', trigger: 'blur'},
        ],
      }
    }
  },

  methods: {
    changeTab: function (idx) {
      this.tabSelected = idx
    },
    onSubmit(form) {
      this.$refs[form].validate((valid) => {
        if (valid) {
          console.log("submit!");
        } else {
          console.log('error!')
        }
      })
    },
    smsCodeSend() {  // 发送验证码以及读秒功能
      this.$refs.smsForm.validateField('phone', (error) => {
        console.log(error)
        if (error) {
          return false;
        } else {
          // 验证通过, 发送验证码
          // 设置读秒功能
          this.disabledAttr = true;
          let text = 3
          const interval = window.setInterval(() => {
            text -= 1
            this.smsText = `${text}后重新发送`;
            if (text < 1){
              this.disabledAttr = false;
              this.smsText = '点击发送验证码'
              window.clearInterval(interval);
            }
          }, 1000)
        }
      })
    }
  }
}
</script>

<style scoped>

.main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.loginBox {
  background-color: aliceblue;
  background-color: rgba(255, 255, 255, 0.5); /*让背景变透明 */
  border-radius: 2px;
  width: 320px;
  min-height: 250px;
  padding: 0 24px 20px;
}

.tabBoxSwitchUl {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.tabBoxSwitchUl li {
  display: inline-block;
  height: 60px;
  font-size: 16px;
  line-height: 60px;
  margin-right: 24px;
  cursor: pointer; /* 让光标变成一只手 */
}

.tab-active {
  position: relative; /* 相对位置 */
  color: #1a1a1a;
  font-weight: 600;
  font-synthesis: style;

}

.tab-active::before {
  display: block;
  position: absolute; /* 绝对位置 */
  bottom: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #0084ff;
}

</style>

知识点总结:

  • 背景图片的配置
background-image: url('../public/wallhaven-e7kw6o.png');  /* 路径 */
background-repeat: no-repeat;  /* 不重复 */
background-size: cover;  /* 覆盖 */
background-attachment: fixed;  /* 适应屏幕 */

cursor: pointer; /* 让光标变成一只手 */
background-color: rgba(255, 255, 255, 0.5); /*让背景变透明 */
  • v-show结合click事件 -> 绑定实现密码登录和免密登录的分开展示
  • 三元表达式为标签加上tab-active属性
  • 基于elementUI的:model绑定form数据 :rules设置验证规则 ref绑定表格验证
  • 基于setInterval功能和设置:disabled属性设置读秒器

3.路由和菜单

Layout.Vue

<template>
  <div>
    <el-menu :default-active="rootActive" class="el-menu-demo" mode="horizontal" background-color="#545c64"
             text-color="#fff" active-text-color="#ffd04b" router>
      <el-menu-item index="">媒体宝系统</el-menu-item>
      <el-menu-item index="Task" :route="{name:'Activity'}">任务宝</el-menu-item>
      <el-menu-item index="Msg" :route="{name:'Push'}">消息宝</el-menu-item>
      <el-menu-item index="Auth" :route="{name:'Auth'}">微信授权</el-menu-item>

      <el-submenu index="5" style="float: right">
        <template slot="title">ifeng</template>
        <el-menu-item index="5-1">个人中心</el-menu-item>
        <el-menu-item index="5-2">注销</el-menu-item>
      </el-submenu>
    </el-menu>

    <div>
      <router-view></router-view> <!-- 当前标签如果存在子路由就会在这里展示出来 -->
    </div>
  </div>
</template>

<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "Layout",
  data() {
    return {
      rootActive: ""
    }
  },
  mounted() {
    this.rootActive = this.$route.matched[1].name;
  }

}
</script>

<style scoped>

</style>

index.js

import Vue from 'vue'
import VueRouter from 'vue-router'
import Login from '../views/Login'
import Layout from '../views/Layout'
import TaskLayout from "@/views/Task/taskLayout";
import Auth from "@/views/Auth/Auth";
import MsgLayout from "@/views/Msg/msgLayout";
import Activity from "@/views/Task/Activity";
import Promo from "@/views/Task/Promo";
import State from "@/views/Task/State";
import Fans from "@/views/Task/Fans";
import Push from "@/views/Msg/Push";
import Sop from "@/views/Msg/Sop";

Vue.use(VueRouter)

const routes = [
    {
        path: '/login',
        name: 'Login',
        component: Login
    },
    {
        path: '/',
        name: 'Layout',
        component: Layout,
        children: [
            {
                path: '/task',
                name: 'Task',
                component: TaskLayout,
                children: [
                    {
                        path: '/',
                        redirect: 'activity'  // 当路由为/task默认跳转/task/activity
                    },
                    {
                        path: 'activity',  // 子路由不能加前置/
                        name: 'Activity',
                        component: Activity,
                    },
                    {
                        path: 'promo',
                        name: 'Promo',
                        component: Promo,
                    },
                    {
                        path: 'state',
                        name: 'State',
                        component: State,
                    },
                    {
                        path: 'fans',
                        name: 'Fans',
                        component: Fans,
                    }
                ]
            },
            {
                path: '/msg',
                name: 'Msg',
                component: MsgLayout,
                children: [
                    {
                        path: '/',
                        redirect: 'push'  // 当路由为/msg默认跳转/msg/push
                    },
                    {
                        path: 'push',
                        name: 'Push',
                        component: Push,
                    },
                    {
                        path: 'sop',
                        name: 'Sop',
                        component: Sop,
                    },
                ]
            },
            {
                path: '/auth',
                name: 'Auth',
                component: Auth
            },
        ]
    },

]

const router = new VueRouter({
    routes
})

export default router

知识点总结:

  • 默认选中功能: 定义:default-active="rootActive" 和对应的index结合, 通过mounted获取当前路由赋值给rootActive
<template>
  <div>
    <el-menu :default-active="rootActive" class="el-menu-demo" mode="horizontal" background-color="#545c64"
             text-color="#fff" active-text-color="#ffd04b" router>
      <el-menu-item index="">媒体宝系统</el-menu-item>
      <el-menu-item index="Task" :route="{name:'Activity'}">任务宝</el-menu-item>
      <el-menu-item index="Msg" :route="{name:'Push'}">消息宝</el-menu-item>
      <el-menu-item index="Auth" :route="{name:'Auth'}">微信授权</el-menu-item>
  </div>
</template>
<script>
export default {
  name: "Layout",
  data() {
    return {
      rootActive: ""
    }
  },
  mounted() {
    this.rootActive = this.$route.matched[1].name;
  }
}
</script>
  • 一级和二级菜单的展示: 写对应的路由关系和route-link, route-view
  • 切换过程中的小bug, 当在二级菜单中, 点击一级菜单会出现无法默认选中的情况: 使用watch检测url的变化, 一旦检测到立刻更新值确保切换页面正常
export default {
  name: "taskLayout",
  data(){
    return {
      subActiveRouter: ""
    }
  },
  watch: {  // 检测url的变化, 一旦检测到立刻更新值确保切换页面正常
    $route: function (to){
      this.subActiveRouter = to.name;
    }
  },
  mounted(){
    this.subActiveRouter = this.$route.matched[2].name
  }
}
  • 点击一级菜单会自动跳转到默认的二级菜单
path: '/task',
name: 'Task',
component: TaskLayout,
children: [
	{
		path: '/',
		redirect: 'activity'  // 当路由为/task默认跳转/task/activity
	},
    {
        path: 'activity',  // 子路由不能加前置/
        name: 'Activity',
		component: Activity,
	},
]

4.授权

<template>
  <div>

    <el-card class="box-card flex-row-center" shadow="hover">
      <div class="flex-col-center">
        <i class="el-icon-circle-plus-outline icon"></i>
        <div class="text">添加公众号</div>
      </div>
    </el-card>


    <el-card class="box-card box-item" shadow="hover" :body-style="{width:'100%',padding:'20px'}">
      <div class="item flex-row-center">
        <el-avatar fit="contain" src="下载.png"></el-avatar>
      </div>
      <div class="item flex-row-center">小卡片</div>
      <div class="item flex-row-center">
        <div class="flex-row-between" style="width: 100px;font-size: 12px;">
          <div style="color: gray">服务号</div>
          <div style="color: #0c8eff;">已认证</div>
        </div>
      </div>
      <el-divider></el-divider>
      <div class="item small flex-row-between">
        <div><i class="el-icon-position"></i> 任务包</div>
        <div class="date">2020-11-11到期</div>
      </div>
      <div class="item small flex-row-between">
        <div><i class="el-icon-bell"></i> 消息宝</div>
        <div class="date">2020-11-11到期</div>
      </div>
    </el-card>

    <el-card class="box-card box-item" shadow="hover" :body-style="{width:'100%',padding:'20px'}">
      <div class="item flex-row-center">
        <el-avatar fit="contain" src="下载.png"></el-avatar>
      </div>
      <div class="item flex-row-center">小卡片</div>
      <div class="item flex-row-center">
        <div class="flex-row-between" style="width: 100px;font-size: 12px;">
          <div style="color: gray">服务号</div>
          <div style="color: #0c8eff;">已认证</div>
        </div>
      </div>
      <el-divider></el-divider>
      <div class="item small flex-row-between">
        <div><i class="el-icon-position"></i> 任务包</div>
        <div class="date">2020-11-11到期</div>
      </div>
      <div class="item small flex-row-between">
        <div><i class="el-icon-bell"></i> 消息宝</div>
        <div class="date">2020-11-11到期</div>
      </div>
    </el-card>

    <el-card class="box-card box-item" shadow="hover" :body-style="{width:'100%',padding:'20px'}">
      <div class="item flex-row-center">
        <el-avatar fit="contain" src="下载.png"></el-avatar>
      </div>
      <div class="item flex-row-center">小卡片</div>
      <div class="item flex-row-center">
        <div class="flex-row-between" style="width: 100px;font-size: 12px;">
          <div style="color: gray">服务号</div>
          <div style="color: #0c8eff;">已认证</div>
        </div>
      </div>
      <el-divider></el-divider>
      <div class="item small flex-row-between">
        <div><i class="el-icon-position"></i> 任务包</div>
        <div class="date">2020-11-11到期</div>
      </div>
      <div class="item small flex-row-between">
        <div><i class="el-icon-bell"></i> 消息宝</div>
        <div class="date">2020-11-11到期</div>
      </div>
    </el-card>

    <el-card class="box-card box-item" shadow="hover" :body-style="{width:'100%',padding:'20px'}">
      <div class="item flex-row-center">
        <el-avatar fit="contain" src="下载.png"></el-avatar>
      </div>
      <div class="item flex-row-center">小卡片</div>
      <div class="item flex-row-center">
        <div class="flex-row-between" style="width: 100px;font-size: 12px;">
          <div style="color: gray">服务号</div>
          <div style="color: #0c8eff;">已认证</div>
        </div>
      </div>
      <el-divider></el-divider>
      <div class="item small flex-row-between">
        <div><i class="el-icon-position"></i> 任务包</div>
        <div class="date">2020-11-11到期</div>
      </div>
      <div class="item small flex-row-between">
        <div><i class="el-icon-bell"></i> 消息宝</div>
        <div class="date">2020-11-11到期</div>
      </div>
    </el-card>

    <el-card class="box-card box-item" shadow="hover" :body-style="{width:'100%',padding:'20px'}">
      <div class="item flex-row-center">
        <el-avatar fit="contain" src="下载.png"></el-avatar>
      </div>
      <div class="item flex-row-center">小卡片</div>
      <div class="item flex-row-center">
        <div class="flex-row-between" style="width: 100px;font-size: 12px;">
          <div style="color: gray">服务号</div>
          <div style="color: #0c8eff;">已认证</div>
        </div>
      </div>
      <el-divider></el-divider>
      <div class="item small flex-row-between">
        <div><i class="el-icon-position"></i> 任务包</div>
        <div class="date">2020-11-11到期</div>
      </div>
      <div class="item small flex-row-between">
        <div><i class="el-icon-bell"></i> 消息宝</div>
        <div class="date">2020-11-11到期</div>
      </div>
    </el-card>

  </div>
</template>

<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: 'Auth',
  created: function () {

  }
}
</script>

<style scoped>
.box-card {
  width: 240px;
  height: 260px;
  float: left;
  margin: 20px;
}

.box-item {
  display: flex;
}

.box-item .item {
  padding: 5px 0;
}

.box-item .small {
  font-size: 14px;
  padding: 10px 0;
  color: #646464;
}

.box-item .date {
  font-size: 13px;
  color: #908e8e;
}

.flex-row-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-row-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.flex-col-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.box-card .icon {
  font-size: 50px;
}

.box-card .text {
  font-size: 14px;
  margin-top: 8px;
}

.el-divider--horizontal {
  margin: 18px 0;
}
</style>

5.消息宝

5.1 消息推送

<template>
  <div style="padding: 20px;">
    <el-card class="box-card">
      <el-form :inline="true" class="demo-form-inline" size="small" :model="searchForm" ref="searchForm">
        <el-form-item label="标题" prop="title">
          <el-input placeholder="标题" v-model="searchForm.title"></el-input>
        </el-form-item>

        <el-form-item label="类型" prop="category">
          <el-select placeholder="类型" v-model="searchForm.category">
            <el-option v-for="item in categoryOptions" :key="item.value" :label="item.label"
                       :value="item.value"></el-option>
            <el-option label="区域二" value="beijing"></el-option>
          </el-select>
        </el-form-item>

        <el-form-item label="推送时间" prop="dateValue">
          <el-date-picker
              v-model="searchForm.dateValue"
              type="datetimerange"
              start-placeholder="开始日期"
              end-placeholder="结束日期"
              :default-time="['12:00:00']">
          </el-date-picker>
        </el-form-item>
      </el-form>

      <el-row type="flex" justify="center">
        <el-button size="small" type="primary" @click="clickSearch">筛选</el-button>
        <el-button size="small" @click="resetSearchForm('searchForm')">重置</el-button>
      </el-row>
    </el-card>

    <el-card class="box-card" style="margin-top: 25px;">
      <div slot="header" class="clearfix">
        <span><i class="el-icon-s-grid"></i> 消息列表</span>
        <el-button style="float: right;" type="primary" size="small" @click="clickAddDialog">
          <i class="el-icon-circle-plus-outline"></i> 操作按钮
        </el-button>
      </div>
      <div>
        <el-table :data="tableData" border style="width: 100%">
          <el-table-column prop="date" label="日期"></el-table-column>
          <el-table-column prop="name" label="姓名"></el-table-column>
          <el-table-column prop="address" label="地址"></el-table-column>
          <el-table-column label="操作">
            <template slot-scope="scope">
              <el-button @click="handleClick(scope.row)" type="text" size="small">查看</el-button>

              <el-popconfirm title="这是一段内容确定删除吗?" @confirm="confirmDelete(scope.row)">
                <el-button slot="reference" type="text" size="small">删除</el-button>
              </el-popconfirm>
            </template>
          </el-table-column>
        </el-table>
      </div>
      <el-row type="flex" justify="end" style="margin-top: 30px;">
        <el-pagination
            :total="page.totalCount"
            :page-size="page.perPageSize"
            background
            layout="prev, pager, next,jumper"
            @current-change="handleCurrentChange"
        >
        </el-pagination>
      </el-row>
    </el-card>


    <el-dialog title="收货地址" :visible.sync="dialogFormVisible">
      <el-form label-position="left" label-width="80px" :model="addForm">
        <el-form-item label="活动名称" prop="x1">
          <el-input autocomplete="off" v-model="addForm.x1"></el-input>
        </el-form-item>
        <el-form-item label="活动区域" prop="x2">
          <el-select placeholder="请选择活动区域" v-model="addForm.x2">
            <el-option label="区域一" value="shanghai"></el-option>
            <el-option label="区域二" value="beijing"></el-option>
          </el-select>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
        <el-button @click="dialogFormVisible = false">取 消</el-button>
        <el-button type="primary" @click="dialogFormVisible = false">确 定</el-button>
      </div>
    </el-dialog>

    <el-dialog title="提示" :visible.sync="dialogVisible" width="30%">
      <span>这是一段信息</span>
      <span slot="footer" class="dialog-footer">
                <el-button @click="dialogVisible = false">取 消</el-button>
                <el-button type="primary" @click="dialogVisible = false">确 定</el-button>
              </span>
    </el-dialog>
  </div>
</template>

<script>
export default {
  // eslint-disable-next-line vue/multi-word-component-names
  name: "Push",
  data() {
    return {
      searchForm: {
        title: "",
        category: "",
        dateValue: "",
      },
      categoryOptions: [
        {
          value: '1',
          label: '黄金糕'
        }, {
          value: '2',
          label: '双皮奶'
        }, {
          value: '3',
          label: '蚵仔煎'
        }, {
          value: '4',
          label: '龙须面'
        }, {
          value: '5',
          label: '北京烤鸭'
        }],
      tableData: [
        {
          date: '2016-05-02',
          name: '王小虎',
          province: '上海',
          city: '普陀区',
          address: '上海市普陀区金沙江路 1518 弄',
          zip: 200333
        }, {
          date: '2016-05-04',
          name: '王小虎',
          province: '上海',
          city: '普陀区',
          address: '上海市普陀区金沙江路 1517 弄',
          zip: 200333
        }, {
          date: '2016-05-01',
          name: '王小虎',
          province: '上海',
          city: '普陀区',
          address: '上海市普陀区金沙江路 1519 弄',
          zip: 200333
        }, {
          date: '2016-05-03',
          name: '王小虎',
          province: '上海',
          city: '普陀区',
          address: '上海市普陀区金沙江路 1516 弄',
          zip: 200333
        }],
      page: {
        totalCount: 10000,
        perPageSize: 20
      },
      dialogFormVisible: false,
      addForm: {
        x1: "",
        x2: ""
      },
      dialogVisible:false
    }
  },
  methods: {
    clickSearch() {
      console.log(this.searchForm);
    },
    resetSearchForm(formName) {
      this.$refs[formName].resetFields();
    },
    handleClick(row) {
      console.log(row);
      this.dialogVisible = true;
    },
    confirmDelete(row) {
      console.log("确定删除", row);
    },
    handleCurrentChange(page) {
      console.log("想要查看:", page);
    },
    clickAddDialog() {
      this.dialogFormVisible = true;
    },
  }
}
</script>

<style scoped>

</style>

  • 利用elementUI中的日期选择器, 表格, 分页, 对话框等功能

5.2 SOP计划

和上面的界面差不多, 我将修改的代码贴一些

<el-table :data="tableData" border style="width: 100%">
    <el-table-column prop="date" label="日期"></el-table-column>
    <el-table-column prop="name" label="姓名"></el-table-column>
    <el-table-column prop="address" label="地址"></el-table-column>
    <el-table-column  label="状态">
        <template slot-scope="scope">
<el-tag v-if="scope.row.status === 1" type="success">成功</el-tag>
<el-tag v-if="scope.row.status === 2" type="danger">失败</el-tag>
        </template>
    </el-table-column>
    </el-table-column>
</el-table>

6.任务宝

6.1 活动列表

  • 路由的设计
  • 列表和新建

6.2 推广码

  • 抽屉的使用
  • 悬浮图片变大 -> 扫码

6.3 参与粉丝

6.4 数据统计

  • flex布局
  • 使用highChart绘图
npm install highcharts-vue
import HighchartsVue from 'highcharts-vue'

Vue.use(HighchartsVue)
<template>
       <highcharts :options="opt1" style="height: 330px;min-width: 300px"></highcharts>
</template>

<script>
export default {
	name: "State",
    // 添加highchart相关配置
    opt1: {
        title: {
          text: '2010 ~ 2016 年太阳能行业就业人员发展情况'
        },
        subtitle: {
          text: '数据来源:thesolarfoundation.com'
        },
        yAxis: {
          title: {
            text: '就业人数'
          }
        },
        legend: {
          layout: 'vertical',
          align: 'right',
          verticalAlign: 'middle'
        },
        plotOptions: {
          series: {
            label: {
              connectorAllowed: false
            },
            pointStart: 2010
          }
        },
        series: [{
          name: '安装,实施人员',
          data: [43934, 52503, 57177, 69658, 97031, 119931, 137133, 154175]
        }, {
          name: '工人',
          data: [24916, 24064, 29742, 29851, 32490, 30282, 38121, 40434]
        }, {
          name: '销售',
          data: [11744, 17722, 16005, 19771, 20185, 24377, 32147, 39387]
        }, {
          name: '项目开发',
          data: [null, null, 7988, 12169, 15112, 22452, 34400, 34227]
        }, {
          name: '其他',
          data: [12908, 5948, 8105, 11248, 8989, 11816, 18274, 18111]
        }],
        responsive: {
          rules: [{
            condition: {
              maxWidth: 500
            },
            chartOptions: {
              legend: {
                layout: 'horizontal',
                align: 'center',
                verticalAlign: 'bottom'
              }
            }
          }]
        }
      },
}
</script>

文档:https://www.highcharts.com.cn/docs/highcharts-vue

标签:实战,11,vue,name,flex,component,案例,Vue,path
From: https://www.cnblogs.com/huxiaofeng1029/p/17362989.html

相关文章

  • Vue——renderMixin【十八】
    前言经过lifecycleMixin再接下来就到了renderMixin,接下来咱们就看看renderMixin中到底有什么;内容renderMixin位于src/core/instance/render.ts下;exportfunctionrenderMixin(Vue:typeofComponent){//installruntimeconveniencehelpers//挂载各种私有方法......
  • vue3 ts 网易云信 未读数 手动设置已读已废弃
    vue3ts网易云信未读数//未读数清空$uikit.resetSessionUnread(store.sessionId.value);调用接口nim.resetSessionUnread('sessionId')重置会话未读数。将此会话未读数置为0,之后收到消息重新计算未读数。调用接口nim.setCurrSession('sessionId')设置当前会话。将此会......
  • vue3 获取asset文件夹下所有资源文件列表
     参考链接:https://www.jianshu.com/p/0f4386d19c07importpathfrom"path"; constgetLayerBgs=function(){ constimgs:any=[]; //获取所有背景图层 //读取文件的路径是否遍历文件的子目录匹配文件正则表达式 constfiles=require.context("@/a......
  • Vue项目如何配置、切换主题颜色(mixin + scss方式,简单高效)
    Action一.首先,引入scss依赖(node-sass,sass-loader)npminstallnode-sasssass-loader--save-dev1二.项目样式文件目录介绍1.此处我将项目中的公共样式文件放到了src/style目录下,其中index.scss是以供全局使用的一些基本样式,在main.js文件中引入即可全局使用(图2)。_theme.scs......
  • vue3 + ts + vite 封装 request
    npmiaxios目录 request.ts (直接复制可用)importaxiosfrom"axios";import{showMessage}from"./status";//引入状态码文件import{ElMessage}from"element-plus";//引入el提示框,这个项目里用什么组件库这里引什么//设置接口超时时间axios.defa......
  • vue3自定义指令实现el-select下拉加载更多
    1.新建js文件exportdefault(app)=>{app.directive('loadmore',{beforeMount(el,binding){constelement=el.querySelector('.t-select__dropdown');element.addEventListener('scroll',()=>{co......
  • 【专栏精选】实战:动态配置图片
    本文节选自洪流学堂公众号技术专栏《大话Unity2019》,未经允许不可转载。洪流学堂公众号回复专栏,查看更多专栏文章。洪流学堂,让你快人几步。你好,我是郑洪智。小新:“大智,最近我在做一个虚拟展厅的demo,你说我怎么最大程度提高这个程度的扩展性呢?最好图片和文字说明是可以动态替换的。......
  • 【专栏精选】实战:使用LeanCloud上传玩家分数,实现排行榜
    本文节选自洪流学堂公众号技术专栏《大话Unity2019》,未经允许不可转载。洪流学堂公众号回复专栏,查看更多专栏文章。洪流学堂,让你快人几步。你好,我是郑洪智。小新:“有了用户登录后,我们总要拿来做点什么事情吧?”大智:“有了用户登陆信息之后,就可以针对用户来存储他自己的信息了,比如......
  • 【专栏精选】实战:百度语音合成
    本文节选自洪流学堂公众号技术专栏《大话Unity2019》,未经允许不可转载。洪流学堂公众号回复语音识别获取源码工程。洪流学堂,让你快人几步。你好,我是郑洪智。大智:“昨天我们实战了语音识别,在人工智能的语音领域,还有很大一块是语音合成,也就是TexttoSpeech,文字转语音。”小新:“是不......
  • 【专栏精选】实战:百度语音识别
    本文节选自洪流学堂公众号技术专栏《大话Unity2019》,未经允许不可转载。洪流学堂公众号回复语音识别获取源码工程。洪流学堂,让你快人几步。你好,我是郑洪智。大智:“今天给你来点刺激的。”小新满面红光:“啥刺激的?人家可还是个小孩子。”大智:“带你实战!”小新:“啊?智哥你变了!”大......