简介
该用户还未填写简介
擅长的技术栈
可提供的服务
暂无可提供的服务
vite运行报错vite.config.ts配置css: {// css预处理器preprocessorOptions: {scss: {// 引入 var.scss 这样就可以在全局中使用 var.scss中预定义的变量了additionalData: '@import "./src/assets/scss/var.scss"'}}}helloWorld.vue<style lang="s
给定义的 ref 的值设置类型<template><el-input ref="input"></el-input></template>//....import {Ref, ref} from 'vue'const input: Ref<HTMLElement> = ref(null)这样写之后会导致编译报错(vuetur报错)Type
typeofconst obj = {name: '测试',id: 1,children: {name: '测试-子',id: 2}}// 定义类型type ObjType = typeof obj// 这个时候的 ObjType 的类型为 {name: string, id: number, children: {name: string, id: number}}keyofinterface
vue3 Suspensevue3新增了异步组件,和一堆api。。文档最近使用vue3开发中,需要在setup中使用async获取接口数据// ...async setup () {await $http.getUserInfo().then((res: any) => {//... 处理数据})await $http.getApplicationInfo().then((res: any)