Skip to content

Instantly share code, notes, and snippets.

@Lavhe
Lavhe / docker-compose.yaml
Created July 8, 2023 19:40
Coportal docker-compose
version: "3.7"
networks:
default:
name: coportal-network
external: true
mongo_default:
external: true
services:
coportal-ui:
image: lavhe/co-portal:ui
@Lavhe
Lavhe / vue.d.ts
Created September 8, 2017 09:17 — forked from kaorun343/vue.d.ts
interface Array<T> {
$remove(item: T): Array<T>;
$set(index: number, val: T): T;
}
declare namespace vuejs {
interface PropOption {
type?: any;
required?: boolean;