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> | |
| <input v-model="foo.bar"> // this will work | |
| <input v-model="foo.bar.baz"> // Exception: cannot read property 'baz' of undefined | |
| </template> | |
| <script> | |
| export default { | |
| .... | |
| data() { | |
| return { |
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
| sessionId:5b572ac193424d40ae0ce83123422804 | |
| senderProfileId:312 | |
| recipientProfileId:308 | |
| content:iVBORw0KGgoAAAANSUhEUgAAAgwAAAExCAYAAAAQivrhAAAYMGlDQ1BJQ0MgUHJvZmlsZQAAWIWV↵WQdUFEuz7tnZTN4l55xBcs455wwisKQlCUtSQBFElKAIKiAoKiJRRUUBFUEQA4oSFFREBJGgooBe↵UAnyBlDv/e97573z+pyZ+U51dfVXU901XbsA8Kj4R0dHoJgBiIyKozmZGwl6eHoJ4t4CCLAAdqAM↵0P6U2GhDBwcbgLTfz/9si4OINtKeyq3b+u/9/2tjCQyKpQAAOSA4IDCWEongqwCg1SjRtDgAMDOI↵XCQxLhrBWIQlYKUhBBEsuo5DNrHGOg7YxDYbOi5Oxgj2AwBP7+9PCwGAcZ2XYAIlBLHDmIv0kaIC↵qVGI6mkE61FC/QMB4B5FdGQjI7cjmIcewZIB/7AT8h82A/7Y9PcP+YM3fdloeBNqbHSE/87/5+v4↵v1tkRPzvOUSQiz6UZuG07vP6ewvfbr2OEe7Qg6gAO3sEkxD8jBq4ob+OJ0PjLVx/6X+nxBoj7wyJ↵M0DRB/qbWCOYF8HC8eGuhr+wnj9tYyyij/JKCnVx37SPiqJtd/plH5UUFWFn88tObmiQ5W9cHhRr↵6vxbJ5hqZolgJIaoZmqcpcsvmw8SqG52CGZE8HBsuLP1r7EfkkKN7f7MFe+0zhmJOQwiY3/7AosG↵08ycNvVhtVCqpd0vuU1cqIvF5ljYl+K/wYETwWFBsR42v/kEBpmYbvKB04OiXH/xhAui44ycfulX↵REc4/NKHW4IizNflwgh+Epvg/HvsXByy2DZ9QYMwfyuHzXnRrNFxDi6b3NCCwAYYAxMgCOKRKwBs↵B2GA+mSmaQb87jED/oAGQkAQkPsl+T3CfaMnCrk7gyTwCUFBIPbPOKON3iCQgMhX/0g373IgeKM3↵YWNEOJ |
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> | |
| <el-menu :router="true" :default-active="activeLink"> | |
| <template v-for="rule in $router.options.routes"> | |
| <el-submenu v-if="rule.children && rule.children.length > 0" | |
| :index="rule.path" | |
| > | |
| <template slot="title"><i :class="rule.icon"></i>{{ rule.title }}</template> | |
| <el-menu-item v-for="child in rule.children" :index="rule.path + '/' + child.path">{{ child.title }}</el-menu-item> | |
| </el-submenu> | |
| <el-menu-item v-else |
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
| /* | |
| * This is a copy of the source code from https://github.com/mattdiamond/Recorderjs | |
| * This gist contains the built version of the script for my debugging purposes. | |
| */ | |
| (function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.Recorder = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
| " |
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
| /** | |
| * Think of this "main.js" file as your application bootstrap. | |
| */ | |
| import Vue from 'vue' | |
| import Resource from 'vue-resource' | |
| import VueRouter from 'vue-router' | |
| import routes from './routes' | |
| import middleware from './middleware' |
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
| import React from "react"; | |
| import 'react-quill/dist/quill.snow.css'; | |
| import ReactQuill from 'react-quill'; | |
| import PropTypes from 'prop-types'; | |
| class Editor extends React.Component { | |
| constructor(props) { | |
| super(props) | |
| } | |
| componentDidMount() { |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>items</key> | |
| <array> | |
| <dict> | |
| <key>assets</key> | |
| <array> | |
| <dict> |
NewerOlder