
vue
TXHE!
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
electron 搭建快捷方式
npm init @quick-start/electron原创 2023-06-10 15:45:49 · 470 阅读 · 0 评论 -
vue 预定房间组件
<template> <table class="order-room"> <th class="title">{{ roomTitle }}</th> <th v-for="i in 27" :key="i" class="clock"> {{ (10 > (i - 1) % 24 ? '0' : '') + (i - 1) % 24 + ':00' }} <br> - .原创 2022-03-01 11:26:29 · 678 阅读 · 0 评论 -
vue3.0+ts挂载全局组件
import MyNavBar from "@/components/MyNavBar/index.vue"; import { App } from "vue"; const components = { install: (Vue: App): void => { Vue.component("MyNavBar", MyNavBar); }, }; export default components;原创 2021-09-09 13:53:16 · 837 阅读 · 0 评论 -
基于vue3.0和element-plus的IP地址输入框
<template> <div class="my_ip_address_input"> <el-input v-model="ipAddress[0]" @keyup="handleChange" oninput="value=value.replace(/[^\d]/g,'')&&value>255?255:value"/> <span>.</span&原创 2021-08-13 17:33:32 · 1365 阅读 · 2 评论