
vue
321yanqing
这个作者很懒,什么都没留下…
展开
-
vue设置全局服务ip
1. 添加了public/config.jssunwayConfig={ ip: xxx}2. 在html中引用3. 全局挂载原创 2022-03-30 10:17:40 · 708 阅读 · 0 评论 -
vue评论小实例
<style> .list li{ list-style-type: none; padding-bottom: 5px; } .tit{ display: flex; } .title{ width: 30...原创 2018-09-27 12:56:11 · 197 阅读 · 0 评论 -
vue电子书中的页面亮度是如何调节的?
直接来代码: <script src="vue/dist/vue.js"></script> <style> .box{ width: 300px; height: 300px; background-color: orangered; } ...原创 2018-09-28 11:43:40 · 1130 阅读 · 0 评论 -
vue中的增删改查
<template> <div> <div class="all"> <div class="btn"> <el-button type="primary" @click="show">显示</el-button>原创 2018-10-14 22:16:20 · 520 阅读 · 0 评论 -
vue框架email如何自动填写后缀
<script src="vue/dist/vue.js"></script><style> .v-email{ width:300px; height:300px; border:none; position: relative; } .list{ wi...原创 2018-09-30 15:50:53 · 2550 阅读 · 0 评论 -
vue+vuex+es6接口调用封装
小实例:getCar.jsimport { udao } from '@/api'const getCar = { state: { CodeList: [] }, mutations: { SET_CODE: (state, codeList) => { state.CodeList = codeList } }, act...原创 2018-10-29 08:38:36 · 1071 阅读 · 0 评论 -
新手如何建vue项目
准备工作:配置环境 搭建脚手架 文件项目分类开发:倒包 配置路由 登陆页面开发 项目开发今天先配置环境主要用到的环境和工具有:node 开发环境下载node 一般会自动下载npm npm主要用来下载依赖 cnpm是用国内的淘宝镜像下载依赖 下载速度较快webpack 主要用来打包分类js cs等文件夹git 用来代码的分支开发和远程管理 由于我是自己尝试写着玩,今...转载 2018-10-30 09:15:33 · 150 阅读 · 0 评论 -
elementUI组件库table多级表头的应用
类似于这种多级表头在elementUi组件库里是这样应用的:实现方法:只需要在 el-table-column 里面嵌套 el-table-column,就可以实现多级表头。<template> <el-table :data="tableData3" style="width: 100%"> <el-table-column prop=...原创 2018-11-27 15:56:54 · 4485 阅读 · 0 评论 -
Cannot read property 'toLowerCase' of undefined
vue.esm.js?efeb:113 Uncaught TypeError: Cannot read property 'toLowerCase' of undefined at eval (webpack-internal:///./node_modules/vue/dist/vue.esm.js:114:38) at validateComponentName (webpac...原创 2019-05-19 22:53:41 · 15634 阅读 · 6 评论