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
| module.exports = { | |
| "parser": "@typescript-eslint/parser", | |
| "parserOptions": { | |
| "project": "./tsconfig.json" | |
| }, | |
| "extends": [ | |
| "eslint:recommended", | |
| "airbnb-base", | |
| "plugin:eslint-comments/recommended", | |
| "plugin:promise/recommended", |
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
| """:mod:`crosspop.web.debugtoolbar` --- :pypi:`Flask-DebugToolbar` customization | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| Some of objects in this module are compied from :pypi:`Flask-SQLAlchemy` | |
| extension. Most of customization is removing dependencies on | |
| :pypi:`Flask-SQLAlchemy` and making it to use internal database modules | |
| (:mod:`crosspop.orm` and :mod:`crosspop.web.db`) instead. | |
| This module is full of monkey patches! :-( Although it works well anyway. |
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> | |
| <v-container fluid> | |
| <v-layout align-start justify-center> | |
| <v-flex xs4 class="elevation-2 ma-2"> | |
| <v-tabs v-model="model" color="cyan" dark slider-color="yellow"> | |
| <draggable v-model="tabs" class="v-tabs__container" @update="tabUpdate"> | |
| <v-tab v-for="(tab, index) in tabs" :key="index" :href="`#tab-${index}`"> | |
| {{ tab.name }} | |
| </v-tab> | |
| </draggable> |