Skip to content

Instantly share code, notes, and snippets.

View Erioifpud's full-sized avatar
🌴
On vacation

Erioifpud

🌴
On vacation
View GitHub Profile
@Erioifpud
Erioifpud / index.js
Last active January 14, 2020 08:21
vue devtools
// ==UserScript==
// @name Vue Devtools Hack
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 生产环境开启 Vue devtool
// @author Erioifpud <erioifpud@zuo.si>
// @grant none
// @match *://*/*
// ==/UserScript==
<template>
<div class="container">
<label v-if="label" :for="rid" :class="{ clickable: clickable }">{{ label }}</label>
<!-- textarea -->
<textarea
v-if="isTextarea"
:id="rid"
:value="data"
@input="handleInput($event.target.value)"
:disabled="disabled"
@Erioifpud
Erioifpud / test2
Last active May 14, 2018 12:31
test
123 456
" --------------
" Vundle setting
" --------------
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins