首页 > 其他分享 >vue相关内容

vue相关内容

时间:2024-04-17 09:34:41浏览次数:21  
标签:vue fade slide 内容 设置 import 相关 路由

vue相关

路径配置

1.根目录下的vite.config.js

import {fileURLToPath, URL} from 'node:url'

import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import {ElementPlusResolver} from 'unplugin-vue-components/resolvers'

// https://vitejs.dev/config/
export default defineConfig({
    plugins: [
        vue(),
        AutoImport({
            resolvers: [ElementPlusResolver()]
        }),
        Components({
            resolvers: [ElementPlusResolver()]
        })
    ],
    resolve: {
        alias: {
            '@': fileURLToPath(new URL('./src', import.meta.url))
        }
    },
    server: {
        cors: true,
        open: true,
        port: 7000,
        proxy: {
            '/api': {
                target: 'http://localhost:7070',
                changeOrigin: true,
                rewrite: (path) => path.replace(/^\/api/, '')
            }
        }
    }
})

其中port为端口号,proxy为代理配置,rewrite为重写路径`

上面的 /api 为代理前缀,http://localhost:7070 为代理目标地址

2.根目录下的src/App.vue

是进入口,显示进入vue后的主页面

3.根目录下的src/router/index.js

是路由配置,可以配置路由,路由跳转等

routes: [
    {
        path: '/',
        redirect: '/login'
    },
    {
        path: '/login',
        component: () => import('../views/loginView.vue')
    },
    {
        path: '/home',
        component: () => import('../views/HomeView.vue'),
        children: [
            {
                path: '/main',
                name: 'main',
                component: () => import('../views/ShouView.vue'),
                meta: {
                    title: '首页'
                }
            }]
    }
]
  • 其中 path 为路由路径,component为路由组件,children为子路由,name为路由名称,meta为路由元信息,title为路由标题
  • path/ 时,表示根路径,重定向到 /login 路由
  • component() => import('../views/loginView.vue') 时,表示引入 loginView.vue 组件`
  • children 为子路由
  • metea 为路由元信息,可以自定义属性,如 title 为路由标题

获取后端数据

1.使用页面

import {ref} from 'vue'
import {getAllCustomer} from '@/api/people.js'

const CustomerList = ref([])
const tableData = ref({
    name: '',
    state: '',
    address: '',
    country: '',
    postalCode: '',
    phone: '',
    customerID: '',
    city: '',
    email: ''
})
const getArticleList = async () => {
    const res = await getAllCustomer(tableData.value)
    CustomerList.value = res.data.data
}
getArticleList()
  • ref 为响应式数据,getAllCustomer 为获取后端数据的方法,tableData 为查询条件,getArticleList 为获取后端数据的方法
  • getArticleList 为获取后端数据的方法,CustomerList 为获取后端数据的结果
  • getArticleList()为在进入页面前引用,相当于mounted钩子函数

2.api页面

import request from '@/utils/request'
// 获取所有客户信息
export const getAllCustomer = () => request.get('/selectCA')
// 品行考核
export const getCharacterByNameLikeAndOvs = (name, ovs) =>
    request.get('/selectCharacterByNameLikeAndOvs?name=' + name + '&ovs=' + ovs)
  • request 为封装的axios请求方法,getAllCustomer 为获取所有客户信息的方法
  • 品行考核函数中,后端使用的为 getMapping
    函数,具体为 public Result selectCharacterByNameLikeAndOvs(String name, String ovs)
  • 获取所有客户信息的方法中,后端使用的为 RequestMapping
    函数,具体方法类似 public Result insertMlat(@RequestBody Mlat mlat)

3.封装axios请求方法

import axios from 'axios'
import {ElMessage} from 'element-plus'
// import router from '@/router'

const baseURL = '/api'

const instance = axios.create({
    // 基础地址,超出时间
    baseURL,
    timeout: 10000
})
// 请求拦截器
instance.interceptors.request.use(
    (config) => {
        // 携带token
        return config
    },
    (err) => Promise.reject(err)
)
// 响应拦截器
instance.interceptors.response.use(
    (res) => {
        // TODO 3.处理业务失败
        // TODO 4.摘取核心响应数据
        if (res.data.code === 1) {
            return res
        }
        // 处理业务失败,给出错误提示,抛出错误
        ElMessage.error(res.data.msg || '服务异常')
        return Promise.reject(res.data)
    },
    (err) => {
        // if (err.response?.status == 401) {
        //   router.push('/login')
        // }
        ElMessage.error(err.response.data.msg || '服务异常')
        return Promise.reject(err)
    }
)

export default instance
export {baseURL}
  • 需要修改的部分
    • baseURL 为后端地址
    • (res.data.code === 1)中的 1 为处理业务成功代码,code = 1时才能在页面显示成功
    • ElMessage.error(res.data.msg || '服务异常') 为处理业务失败时,给出错误提示
    • (err.response?.status == 401) 为处理token失效时,跳转到登录页

CSS相关

1.全局样式

body {
    margin: 0;
    background-color: #f5f5f5;
}

/* fade-slide */
.fade-slide-leave-active,
.fade-slide-enter-active {
    transition: all 0.3s;
}

.fade-slide-enter-from {
    transform: translateX(-30px);
    opacity: 0;
}

.fade-slide-leave-to {
    transform: translateX(30px);
    opacity: 0;
}
  • body 为全局样式,设置背景颜色为 #f5f5f5
  • fade-slide 为全局样式,设置动画效果为 fade-slide
  • fade-slide-leave-active 为全局样式,设置动画效果为 fade-slide-leave-active

2.主页样式

#home {
    min-height: 100vh;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.el-main {
    position: absolute;
    left: 200px;
    right: 0;
    top: 0;
    bottom: 0;

    overflow: auto;
}

.el-aside {
    background-color: #ffffff;
    height: 100vh;
}

/**修改全局的滚动条*/
/**滚动条的宽度*/
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background-color: #ffffff;
    border-radius: 3px;
}
  • #home 为主页样式,设置高度为 100vh,高度为视口高度
  • .el-main 为主页样式,设置位置为绝对,设置左边距为 200px,设置右边距为 0,设置上边距为 0,设置下边距为 0
    ,设置滚动条为 auto
  • .el-aside 为主页样式,设置背景颜色为 #ffffff,设置高度为 100vh
  • ::-webkit-scrollbar 为全局样式,设置滚动条的宽度为 8px
  • ::-webkit-scrollbar-thumb 为全局样式,设置滚动条的背景颜色为 #ffffff,设置滚动条的圆角为 3px
  • position: absolute; 为全局样式,设置位置为绝对
  • -moz-user-select等后三个为全局样式,设置鼠标选中为禁止

标签:vue,fade,slide,内容,设置,import,相关,路由
From: https://www.cnblogs.com/JJTyyds/p/18139809

相关文章

  • vue2 mixin 和 vue3 hook
    mixin1.逻辑函数的复用2vue组件中的选项式API(例如:data,computed,watch)或者组件的生命周期钩子(created、mounted、destroyed)使用方法mixins:[mixins],//注册mixin,这样mixin中所有的钩子函数等同于组件中钩子1mixin中的生命周期函数会和组件的生命周期函数一起合并执行。2......
  • 车辆信息查询 - 高效快捷地获取车辆相关信息的利器
     随着汽车的普及,车辆信息查询变得越来越重要。无论是买车、卖车还是维修保养,了解车辆的详细信息是必不可少的。而如何高效快捷地查询车辆信息成为了很多车主的需求。幸运的是,我们有一个非常实用的接口可以满足这个需求,而这就是挖数据平台提供的车辆信息查询接口。这个接口的主......
  • 小程序跨端,vue移植
    技术选型由于bun1.1.3windows版还有很多不兼容的小bug,先用pnpmtauri+taro+nutUI:https://github.com/AClon314/tauri-taro-template如何评价京东的Taro项目?-知乎(等tarov4正式版再做,beta的模板现在空白无法启动)tauri+vuetify:https://github.com/AClon314/tauri-vuet......
  • 前端学习-vue视频学习016-vue3新组件
    尚硅谷视频教程Teleport:让部分元素脱离原来的位置,到to指定的位置去此处指定了弹窗到body标签内<template><h4>Model</h4><button@click="isShow=true">打开弹窗</button><Teleportto='body'><divclass="tanchuang&q......
  • IL 相关读论文记录
    读读读RILIR链接:https://arxiv.org/pdf/2310.14274.pdf本文主要是对IRL的改进。首先,设计了一个提取关键信息的网络\(\phi(o_t)\)来克服原始IRL中expert数据所在环境和learning环境不一样的问题。接着,再设计了一个网络\(f_\theta(\phi(o_t),\phi(o_{t+1}))\)来预......
  • 05 Vue3组件间的通信
    Vue3组件通信和Vue2的区别:移出事件总线,使用mitt代替。vuex换成了pinia把.sync优化到了v-model里面了把$listeners所有的东西,合并到$attrs中了$children被砍掉了常见搭配形式props-【父传子子传父】若父传子:属性值是非函数若子传父:属性值是函数一般都......
  • 06 Vue3插槽
    6.9.【slot】1.默认插槽父组件中:<Categorytitle="今日热门游戏"><ul><liv-for="gingames":key="g.id">{{g.name}}</li></ul></Category>子组件中:......
  • 在宝塔上配置打包好的vue3项目
    配置文件如下server{listen80;server_namegongchang.365cb.cn; indexindex.htmlindex.htmdefault.phpdefault.htmdefault.html;root/www/wwwroot/dist;#SSL-STARTSSL相关配置,请勿删除或修改下一行带注释的404规则#error_page404/404.html;#SS......
  • vue3中使用scss
    安装依赖npminstallsasssass-loader--save-dev局部使用<stylescopedlang="scss">...定义样式</style> 全局共享样式变量,在assets/style文件夹中定义mixin.scss文件,并设置一些样式;在其他文件使用定义的变量前需要引入样式文件表  在vite.config.ts文件中......
  • KMP 相关
    KMPT1CensoringS给定一个文本串\(S\)和一个模式串\(T\),反复从\(S\)中删去最左边的完整出现的\(T\),然后把左右两部分接起来视作新的文本串\(S\),请问\(S\)的最终形式。\(1\leq|T|\leq|S|\leq10^6\)。T2OKR-PeriodsofWords我们认为\(Q\)是\(S\)的周期仅当......