This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Vue Devtools Hack | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.2 | |
| // @description 生产环境开启 Vue devtool | |
| // @author Erioifpud <erioifpud@zuo.si> | |
| // @grant none | |
| // @match *://*/* | |
| // ==/UserScript== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 123 456 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| " -------------- | |
| " 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 |