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> | |
<v-menu | |
v-model="dialog" | |
:close-on-content-click="false" | |
:nudge-width="200" | |
max-width="290" | |
offset-y | |
> | |
<template v-slot:activator="{ on }"> |
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
let app = require('./uApp.js'); | |
const route = require('./route.js'); | |
const port = 9001; | |
app = new app(); | |
app.use((res, req) => { | |
app.req.test = 'test' | |
}) |
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
// EXAMPLE: | |
// Create a regaxMap array | |
var map = [ | |
[/FIND (.*)/g,function(self,str){ | |
// Get all arguments and variables | |
var all = this.extractAll(arguments,self) | |
// Get current line location/number | |
var ln = all.lineNumber | |
if(str != '' && str != undefined){ |