.', list[i]);\n }\n }\n\n addAttr(el, name, JSON.stringify(value), list[i]); // #6887 firefox doesn't update muted state if set via attribute\n // even immediately after element creation\n\n if (!el.component && name === 'muted' && platformMustUseProp(el.tag, el.attrsMap.type, name)) {\n addProp(el, name, 'true', list[i]);\n }\n }\n }\n}\n\nfunction checkInFor(el) {\n var parent = el;\n\n while (parent) {\n if (parent[\"for\"] !== undefined) {\n return true;\n }\n\n parent = parent.parent;\n }\n\n return false;\n}\n\nfunction parseModifiers(name) {\n var match = name.match(modifierRE);\n\n if (match) {\n var ret = {};\n match.forEach(function (m) {\n ret[m.slice(1)] = true;\n });\n return ret;\n }\n}\n\nfunction makeAttrsMap(attrs) {\n var map = {};\n\n for (var i = 0, l = attrs.length; i < l; i++) {\n if (process.env.NODE_ENV !== 'production' && map[attrs[i].name] && !isIE && !isEdge) {\n warn$2('duplicate attribute: ' + attrs[i].name, attrs[i]);\n }\n\n map[attrs[i].name] = attrs[i].value;\n }\n\n return map;\n} // for script (e.g. type=\"x/template\") or style, do not decode content\n\n\nfunction isTextTag(el) {\n return el.tag === 'script' || el.tag === 'style';\n}\n\nfunction isForbiddenTag(el) {\n return el.tag === 'style' || el.tag === 'script' && (!el.attrsMap.type || el.attrsMap.type === 'text/javascript');\n}\n\nvar ieNSBug = /^xmlns:NS\\d+/;\nvar ieNSPrefix = /^NS\\d+:/;\n/* istanbul ignore next */\n\nfunction guardIESVGBug(attrs) {\n var res = [];\n\n for (var i = 0; i < attrs.length; i++) {\n var attr = attrs[i];\n\n if (!ieNSBug.test(attr.name)) {\n attr.name = attr.name.replace(ieNSPrefix, '');\n res.push(attr);\n }\n }\n\n return res;\n}\n\nfunction checkForAliasModel(el, value) {\n var _el = el;\n\n while (_el) {\n if (_el[\"for\"] && _el.alias === value) {\n warn$2(\"<\" + el.tag + \" v-model=\\\"\" + value + \"\\\">: \" + \"You are binding v-model directly to a v-for iteration alias. \" + \"This will not be able to modify the v-for source array because \" + \"writing to the alias is like modifying a function local variable. \" + \"Consider using an array of objects and use v-model on an object property instead.\", el.rawAttrsMap['v-model']);\n }\n\n _el = _el.parent;\n }\n}\n/* */\n\n\nfunction preTransformNode(el, options) {\n if (el.tag === 'input') {\n var map = el.attrsMap;\n\n if (!map['v-model']) {\n return;\n }\n\n var typeBinding;\n\n if (map[':type'] || map['v-bind:type']) {\n typeBinding = getBindingAttr(el, 'type');\n }\n\n if (!map.type && !typeBinding && map['v-bind']) {\n typeBinding = \"(\" + map['v-bind'] + \").type\";\n }\n\n if (typeBinding) {\n var ifCondition = getAndRemoveAttr(el, 'v-if', true);\n var ifConditionExtra = ifCondition ? \"&&(\" + ifCondition + \")\" : \"\";\n var hasElse = getAndRemoveAttr(el, 'v-else', true) != null;\n var elseIfCondition = getAndRemoveAttr(el, 'v-else-if', true); // 1. checkbox\n\n var branch0 = cloneASTElement(el); // process for on the main node\n\n processFor(branch0);\n addRawAttr(branch0, 'type', 'checkbox');\n processElement(branch0, options);\n branch0.processed = true; // prevent it from double-processed\n\n branch0[\"if\"] = \"(\" + typeBinding + \")==='checkbox'\" + ifConditionExtra;\n addIfCondition(branch0, {\n exp: branch0[\"if\"],\n block: branch0\n }); // 2. add radio else-if condition\n\n var branch1 = cloneASTElement(el);\n getAndRemoveAttr(branch1, 'v-for', true);\n addRawAttr(branch1, 'type', 'radio');\n processElement(branch1, options);\n addIfCondition(branch0, {\n exp: \"(\" + typeBinding + \")==='radio'\" + ifConditionExtra,\n block: branch1\n }); // 3. other\n\n var branch2 = cloneASTElement(el);\n getAndRemoveAttr(branch2, 'v-for', true);\n addRawAttr(branch2, ':type', typeBinding);\n processElement(branch2, options);\n addIfCondition(branch0, {\n exp: ifCondition,\n block: branch2\n });\n\n if (hasElse) {\n branch0[\"else\"] = true;\n } else if (elseIfCondition) {\n branch0.elseif = elseIfCondition;\n }\n\n return branch0;\n }\n }\n}\n\nfunction cloneASTElement(el) {\n return createASTElement(el.tag, el.attrsList.slice(), el.parent);\n}\n\nvar model$1 = {\n preTransformNode: preTransformNode\n};\nvar modules$1 = [klass$1, style$1, model$1];\n/* */\n\nfunction text(el, dir) {\n if (dir.value) {\n addProp(el, 'textContent', \"_s(\" + dir.value + \")\", dir);\n }\n}\n/* */\n\n\nfunction html(el, dir) {\n if (dir.value) {\n addProp(el, 'innerHTML', \"_s(\" + dir.value + \")\", dir);\n }\n}\n\nvar directives$1 = {\n model: model,\n text: text,\n html: html\n};\n/* */\n\nvar baseOptions = {\n expectHTML: true,\n modules: modules$1,\n directives: directives$1,\n isPreTag: isPreTag,\n isUnaryTag: isUnaryTag,\n mustUseProp: mustUseProp,\n canBeLeftOpenTag: canBeLeftOpenTag,\n isReservedTag: isReservedTag,\n getTagNamespace: getTagNamespace,\n staticKeys: genStaticKeys(modules$1)\n};\n/* */\n\nvar isStaticKey;\nvar isPlatformReservedTag;\nvar genStaticKeysCached = cached(genStaticKeys$1);\n/**\n * Goal of the optimizer: walk the generated template AST tree\n * and detect sub-trees that are purely static, i.e. parts of\n * the DOM that never needs to change.\n *\n * Once we detect these sub-trees, we can:\n *\n * 1. Hoist them into constants, so that we no longer need to\n * create fresh nodes for them on each re-render;\n * 2. Completely skip them in the patching process.\n */\n\nfunction optimize(root, options) {\n if (!root) {\n return;\n }\n\n isStaticKey = genStaticKeysCached(options.staticKeys || '');\n isPlatformReservedTag = options.isReservedTag || no; // first pass: mark all non-static nodes.\n\n markStatic$1(root); // second pass: mark static roots.\n\n markStaticRoots(root, false);\n}\n\nfunction genStaticKeys$1(keys) {\n return makeMap('type,tag,attrsList,attrsMap,plain,parent,children,attrs,start,end,rawAttrsMap' + (keys ? ',' + keys : ''));\n}\n\nfunction markStatic$1(node) {\n node[\"static\"] = isStatic(node);\n\n if (node.type === 1) {\n // do not make component slot content static. this avoids\n // 1. components not able to mutate slot nodes\n // 2. static slot content fails for hot-reloading\n if (!isPlatformReservedTag(node.tag) && node.tag !== 'slot' && node.attrsMap['inline-template'] == null) {\n return;\n }\n\n for (var i = 0, l = node.children.length; i < l; i++) {\n var child = node.children[i];\n markStatic$1(child);\n\n if (!child[\"static\"]) {\n node[\"static\"] = false;\n }\n }\n\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n var block = node.ifConditions[i$1].block;\n markStatic$1(block);\n\n if (!block[\"static\"]) {\n node[\"static\"] = false;\n }\n }\n }\n }\n}\n\nfunction markStaticRoots(node, isInFor) {\n if (node.type === 1) {\n if (node[\"static\"] || node.once) {\n node.staticInFor = isInFor;\n } // For a node to qualify as a static root, it should have children that\n // are not just static text. Otherwise the cost of hoisting out will\n // outweigh the benefits and it's better off to just always render it fresh.\n\n\n if (node[\"static\"] && node.children.length && !(node.children.length === 1 && node.children[0].type === 3)) {\n node.staticRoot = true;\n return;\n } else {\n node.staticRoot = false;\n }\n\n if (node.children) {\n for (var i = 0, l = node.children.length; i < l; i++) {\n markStaticRoots(node.children[i], isInFor || !!node[\"for\"]);\n }\n }\n\n if (node.ifConditions) {\n for (var i$1 = 1, l$1 = node.ifConditions.length; i$1 < l$1; i$1++) {\n markStaticRoots(node.ifConditions[i$1].block, isInFor);\n }\n }\n }\n}\n\nfunction isStatic(node) {\n if (node.type === 2) {\n // expression\n return false;\n }\n\n if (node.type === 3) {\n // text\n return true;\n }\n\n return !!(node.pre || !node.hasBindings && // no dynamic bindings\n !node[\"if\"] && !node[\"for\"] && // not v-if or v-for or v-else\n !isBuiltInTag(node.tag) && // not a built-in\n isPlatformReservedTag(node.tag) && // not a component\n !isDirectChildOfTemplateFor(node) && Object.keys(node).every(isStaticKey));\n}\n\nfunction isDirectChildOfTemplateFor(node) {\n while (node.parent) {\n node = node.parent;\n\n if (node.tag !== 'template') {\n return false;\n }\n\n if (node[\"for\"]) {\n return true;\n }\n }\n\n return false;\n}\n/* */\n\n\nvar fnExpRE = /^([\\w$_]+|\\([^)]*?\\))\\s*=>|^function(?:\\s+[\\w$]+)?\\s*\\(/;\nvar fnInvokeRE = /\\([^)]*?\\);*$/;\nvar simplePathRE = /^[A-Za-z_$][\\w$]*(?:\\.[A-Za-z_$][\\w$]*|\\['[^']*?']|\\[\"[^\"]*?\"]|\\[\\d+]|\\[[A-Za-z_$][\\w$]*])*$/; // KeyboardEvent.keyCode aliases\n\nvar keyCodes = {\n esc: 27,\n tab: 9,\n enter: 13,\n space: 32,\n up: 38,\n left: 37,\n right: 39,\n down: 40,\n 'delete': [8, 46]\n}; // KeyboardEvent.key aliases\n\nvar keyNames = {\n // #7880: IE11 and Edge use `Esc` for Escape key name.\n esc: ['Esc', 'Escape'],\n tab: 'Tab',\n enter: 'Enter',\n // #9112: IE11 uses `Spacebar` for Space key name.\n space: [' ', 'Spacebar'],\n // #7806: IE11 uses key names without `Arrow` prefix for arrow keys.\n up: ['Up', 'ArrowUp'],\n left: ['Left', 'ArrowLeft'],\n right: ['Right', 'ArrowRight'],\n down: ['Down', 'ArrowDown'],\n // #9112: IE11 uses `Del` for Delete key name.\n 'delete': ['Backspace', 'Delete', 'Del']\n}; // #4868: modifiers that prevent the execution of the listener\n// need to explicitly return null so that we can determine whether to remove\n// the listener for .once\n\nvar genGuard = function genGuard(condition) {\n return \"if(\" + condition + \")return null;\";\n};\n\nvar modifierCode = {\n stop: '$event.stopPropagation();',\n prevent: '$event.preventDefault();',\n self: genGuard(\"$event.target !== $event.currentTarget\"),\n ctrl: genGuard(\"!$event.ctrlKey\"),\n shift: genGuard(\"!$event.shiftKey\"),\n alt: genGuard(\"!$event.altKey\"),\n meta: genGuard(\"!$event.metaKey\"),\n left: genGuard(\"'button' in $event && $event.button !== 0\"),\n middle: genGuard(\"'button' in $event && $event.button !== 1\"),\n right: genGuard(\"'button' in $event && $event.button !== 2\")\n};\n\nfunction genHandlers(events, isNative) {\n var prefix = isNative ? 'nativeOn:' : 'on:';\n var staticHandlers = \"\";\n var dynamicHandlers = \"\";\n\n for (var name in events) {\n var handlerCode = genHandler(events[name]);\n\n if (events[name] && events[name].dynamic) {\n dynamicHandlers += name + \",\" + handlerCode + \",\";\n } else {\n staticHandlers += \"\\\"\" + name + \"\\\":\" + handlerCode + \",\";\n }\n }\n\n staticHandlers = \"{\" + staticHandlers.slice(0, -1) + \"}\";\n\n if (dynamicHandlers) {\n return prefix + \"_d(\" + staticHandlers + \",[\" + dynamicHandlers.slice(0, -1) + \"])\";\n } else {\n return prefix + staticHandlers;\n }\n}\n\nfunction genHandler(handler) {\n if (!handler) {\n return 'function(){}';\n }\n\n if (Array.isArray(handler)) {\n return \"[\" + handler.map(function (handler) {\n return genHandler(handler);\n }).join(',') + \"]\";\n }\n\n var isMethodPath = simplePathRE.test(handler.value);\n var isFunctionExpression = fnExpRE.test(handler.value);\n var isFunctionInvocation = simplePathRE.test(handler.value.replace(fnInvokeRE, ''));\n\n if (!handler.modifiers) {\n if (isMethodPath || isFunctionExpression) {\n return handler.value;\n }\n\n return \"function($event){\" + (isFunctionInvocation ? \"return \" + handler.value : handler.value) + \"}\"; // inline statement\n } else {\n var code = '';\n var genModifierCode = '';\n var keys = [];\n\n for (var key in handler.modifiers) {\n if (modifierCode[key]) {\n genModifierCode += modifierCode[key]; // left/right\n\n if (keyCodes[key]) {\n keys.push(key);\n }\n } else if (key === 'exact') {\n var modifiers = handler.modifiers;\n genModifierCode += genGuard(['ctrl', 'shift', 'alt', 'meta'].filter(function (keyModifier) {\n return !modifiers[keyModifier];\n }).map(function (keyModifier) {\n return \"$event.\" + keyModifier + \"Key\";\n }).join('||'));\n } else {\n keys.push(key);\n }\n }\n\n if (keys.length) {\n code += genKeyFilter(keys);\n } // Make sure modifiers like prevent and stop get executed after key filtering\n\n\n if (genModifierCode) {\n code += genModifierCode;\n }\n\n var handlerCode = isMethodPath ? \"return \" + handler.value + \".apply(null, arguments)\" : isFunctionExpression ? \"return (\" + handler.value + \").apply(null, arguments)\" : isFunctionInvocation ? \"return \" + handler.value : handler.value;\n return \"function($event){\" + code + handlerCode + \"}\";\n }\n}\n\nfunction genKeyFilter(keys) {\n return (// make sure the key filters only apply to KeyboardEvents\n // #9441: can't use 'keyCode' in $event because Chrome autofill fires fake\n // key events that do not have keyCode property...\n \"if(!$event.type.indexOf('key')&&\" + keys.map(genFilterCode).join('&&') + \")return null;\"\n );\n}\n\nfunction genFilterCode(key) {\n var keyVal = parseInt(key, 10);\n\n if (keyVal) {\n return \"$event.keyCode!==\" + keyVal;\n }\n\n var keyCode = keyCodes[key];\n var keyName = keyNames[key];\n return \"_k($event.keyCode,\" + JSON.stringify(key) + \",\" + JSON.stringify(keyCode) + \",\" + \"$event.key,\" + \"\" + JSON.stringify(keyName) + \")\";\n}\n/* */\n\n\nfunction on(el, dir) {\n if (process.env.NODE_ENV !== 'production' && dir.modifiers) {\n warn(\"v-on without argument does not support modifiers.\");\n }\n\n el.wrapListeners = function (code) {\n return \"_g(\" + code + \",\" + dir.value + \")\";\n };\n}\n/* */\n\n\nfunction bind$1(el, dir) {\n el.wrapData = function (code) {\n return \"_b(\" + code + \",'\" + el.tag + \"',\" + dir.value + \",\" + (dir.modifiers && dir.modifiers.prop ? 'true' : 'false') + (dir.modifiers && dir.modifiers.sync ? ',true' : '') + \")\";\n };\n}\n/* */\n\n\nvar baseDirectives = {\n on: on,\n bind: bind$1,\n cloak: noop\n};\n/* */\n\nvar CodegenState = function CodegenState(options) {\n this.options = options;\n this.warn = options.warn || baseWarn;\n this.transforms = pluckModuleFunction(options.modules, 'transformCode');\n this.dataGenFns = pluckModuleFunction(options.modules, 'genData');\n this.directives = extend(extend({}, baseDirectives), options.directives);\n var isReservedTag = options.isReservedTag || no;\n\n this.maybeComponent = function (el) {\n return !!el.component || !isReservedTag(el.tag);\n };\n\n this.onceId = 0;\n this.staticRenderFns = [];\n this.pre = false;\n};\n\nfunction generate(ast, options) {\n var state = new CodegenState(options); // fix #11483, Root level \n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./backpack.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./backpack.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./backpack.vue?vue&type=template&id=2625c7a8&scoped=true&\"\nimport script from \"./backpack.vue?vue&type=script&lang=js&\"\nexport * from \"./backpack.vue?vue&type=script&lang=js&\"\nimport style0 from \"./backpack.vue?vue&type=style&index=0&id=2625c7a8&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"2625c7a8\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"dialog_screen\"},[(_vm.player.interaction.nowDialogImage)?_c('div',{staticClass:\"dialog_image\"},[_c('vue-img-loader',{staticClass:\"lazyloading\",attrs:{\"src\":_vm.returnDialogImage(_vm.player.interaction.nowDialogImage),\"preview\":_vm.returnPreviewDialogImage(_vm.player.interaction.nowDialogImage),\"centerType\":\"contain\",\"transition\":\"fade\"}})],1):_vm._e(),_vm._v(\" \"),_c('div',{staticClass:\"dialog\"},[(_vm.player.interaction.nowDialog)?_c('div',{staticClass:\"dialog_box\"},[(_vm.NPCShot)?_c('div',{staticClass:\"shot\"},[_c('img',{attrs:{\"src\":require('../images/world/NPC/shot/' + _vm.NPCShot + '.svg')}})]):_vm._e(),_vm._v(\" \"),_c('img',{staticClass:\"bg\",attrs:{\"src\":require(\"../images/world/dialog_frame.svg\")}}),_vm._v(\" \"),_c('div',{class:{name: true, player_name: _vm.isTalkingToMySelf}},[_vm._v(\"\\n \"+_vm._s(_vm.dialogName)+\"\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"dialog_text\",domProps:{\"innerHTML\":_vm._s(_vm.player.interaction.nowDialog)}}),_vm._v(\" \"),_vm._m(0),_vm._v(\" \"),(_vm.hasAnswers)?_c('div',{staticClass:\"answers\"},[_c('img',{staticClass:\"bg\",staticStyle:{\"height\":\"100%\"},attrs:{\"src\":_vm.answerBoxImageSrc + '#svgView(preserveAspectRatio(none))'}}),_vm._v(\" \"),_vm._l((_vm.player.interaction.nowAnswers),function(answer,index){return _c('div',{key:index,class:{answer: true, active: index == _vm.player.interaction.nowAnswerIndex && answer.text},on:{\"mouseover\":function($event){return _vm.setAnswerIndex(index)},\"click\":function($event){return _vm.press_A()}}},[(index == _vm.player.interaction.nowAnswerIndex && answer.text)?_c('img',{staticClass:\"arrow\",attrs:{\"src\":require(\"../images/home/polygon.svg\"),\"alt\":\"\"}}):_vm._e(),_vm._v(\"\\n \"+_vm._s(answer.text)+\"\\n \")])})],2):_vm._e()]):_vm._e()])])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"next_icon frame-anim-2\"},[_c('img',{attrs:{\"draggable\":\"false\",\"src\":require(\"../images/home/next_1.svg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"draggable\":\"false\",\"src\":require(\"../images/home/next_2.svg\"),\"alt\":\"\"}})])}]\n\nexport { render, staticRenderFns }","
\n \n
\n \n \n \n
\n
\n
\n
\n
![]()
\n
\n

\n
\n {{dialogName}}\n
\n \n
\n
\n

\n

\n
\n
\n
![]()
\n
\n

\n {{answer.text}}\n
\n
\n
\n
\n
\n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./dialog.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./dialog.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./dialog.vue?vue&type=template&id=6e177cc2&scoped=true&\"\nimport script from \"./dialog.vue?vue&type=script&lang=js&\"\nexport * from \"./dialog.vue?vue&type=script&lang=js&\"\nimport style0 from \"./dialog.vue?vue&type=style&index=0&id=6e177cc2&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"6e177cc2\",\n null\n \n)\n\nexport default component.exports","
\n \n
\n
![\"\"/]()
\n
\n
\n
\n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./drops.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./drops.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./drops.vue?vue&type=template&id=454e8279&scoped=true&\"\nimport script from \"./drops.vue?vue&type=script&lang=js&\"\nexport * from \"./drops.vue?vue&type=script&lang=js&\"\nimport style0 from \"./drops.vue?vue&type=style&index=0&id=454e8279&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"454e8279\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"drops\"},_vm._l((_vm.appearence.drops),function(drop,index){return _c('div',{key:index,staticClass:\"drop\",style:('width: ' + (0.8 * _vm.unit) + 'px;' +\n 'height: ' + (0.8 * _vm.unit) + 'px;' +\n 'left: ' + (drop.x * _vm.unit) + 'px;' +\n 'top: ' + (drop.y * _vm.unit) + 'px;' +\n 'z-index: ' + (drop.y) + ';' +\n 'transform: ' + 'translate3d(0px, 0px, ' +\n ((drop.name == 'elf')? drop.y-1 : 0) +'px)')},[(drop.name != 'elf')?_c('img',{class:[drop.name],attrs:{\"draggable\":\"false\",\"src\":require('../images/world/drops/'+drop.name+'.svg'),\"alt\":\"\"}}):_c('div',{staticClass:\"elf\",attrs:{\"name\":index}},[_c('img',{staticClass:\"sit\",attrs:{\"src\":require(\"../images/world/drops/elfSit.svg\"),\"alt\":\"\",\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"stand\",attrs:{\"src\":require(\"../images/world/drops/elfStand.svg\"),\"alt\":\"\",\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"jump\",attrs:{\"src\":require(\"../images/world/drops/elfJump.svg\"),\"alt\":\"\",\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"run1\",attrs:{\"src\":require(\"../images/world/drops/elfRun1.svg\"),\"alt\":\"\",\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"run2\",attrs:{\"src\":require(\"../images/world/drops/elfRun2.svg\"),\"alt\":\"\",\"draggable\":\"false\"}})])])}),0)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n
\n \n \n \n \n \n \n
![]()
\n
\n \n \n \n
\n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./objects.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./objects.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./objects.vue?vue&type=template&id=f2a7d910&scoped=true&\"\nimport script from \"./objects.vue?vue&type=script&lang=js&\"\nexport * from \"./objects.vue?vue&type=script&lang=js&\"\nimport style0 from \"./objects.vue?vue&type=style&index=0&id=f2a7d910&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"f2a7d910\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"objects\"},[_vm._l((_vm.objects),function(bigCategory){return [_vm._l((bigCategory),function(object,key){return [_vm._l((object.coordinates),function(coordinate,j){return [_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.isSafari? _vm.is_object_visible(coordinate.x, coordinate.y) : true),expression:\"isSafari? is_object_visible(coordinate.x, coordinate.y) : true\"}],key:'object-'+key+'-'+j,ref:key,refInFor:true,class:[key, 'object'],style:('width: ' + (bigCategory[key].width * _vm.unit) + 'px;' +\n 'left: ' + (coordinate.x * _vm.unit) + 'px;' +\n 'top: ' + (coordinate.y * _vm.unit) + 'px;' +\n 'margin-left: ' + (bigCategory[key].shift.x * _vm.unit) + 'px;' +\n 'margin-top: ' + (bigCategory[key].shift.y * _vm.unit) + 'px;' +\n 'transform: ' + 'translate3d(0px, 0px, ' + (object.alwaysBottom? 0 : (coordinate.y-1)) + 'px)'),attrs:{\"draggable\":\"false\",\"name\":coordinate.x.toString() + coordinate.y.toString()}},[_c('img',{attrs:{\"src\":require('../images/world/objects/' + key + '.svg'),\"alt\":key}})])]})]})]})],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","\n
\n \n
\n \n \n
![]()
\n
\n\n
\n
\n
\n \n
\n\n \n
\n
![]()
\n
\n
\n
\n \n
\n
\n\n
\n
![\"dog\"]()
\n
\n
\n\n\n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./npcs.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./npcs.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./npcs.vue?vue&type=template&id=446621de&scoped=true&\"\nimport script from \"./npcs.vue?vue&type=script&lang=js&\"\nexport * from \"./npcs.vue?vue&type=script&lang=js&\"\nimport style0 from \"./npcs.vue?vue&type=style&index=0&id=446621de&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"446621de\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"NPCs\"},[_vm._l((_vm.npcs),function(npc,key){\nvar _obj;\nreturn _c('div',{ref:key,refInFor:true,class:( _obj = {}, _obj[key] = true, _obj.roof = key.includes('Roof'), _obj ),style:(_vm.return_npc_style(npc)),on:{\"click\":function($event){return _vm.click_for_magic_npc(key)}}},[(_vm.get_npc_img_url(key) && !(_vm.player.state.hasDog && key == 'dog'))?_c('img',{attrs:{\"src\":_vm.get_npc_img_url(key),\"alt\":key,\"draggable\":\"false\"}}):_vm._e()])}),_vm._v(\" \"),_vm._l((_vm.animations),function(animation,key){return _c('div',{key:key,class:[key, 'animation'],style:(_vm.return_npc_style(_vm.npcs[key])),on:{\"click\":function($event){return _vm.click_for_magic_npc(key)}}},[_vm._l((animation),function(imageName){return [_c('img',{attrs:{\"src\":_vm.get_npc_img_url(imageName, 'animations'),\"alt\":key,\"draggable\":\"false\"}})]})],2)}),_vm._v(\" \"),_vm._l((_vm.player.state.events),function(eventImage,index){return _c('div',{key:index,ref:eventImage,refInFor:true,class:[eventImage],style:(_vm.return_npc_style(_vm.npcs[eventImage], eventImage)),on:{\"click\":function($event){return _vm.click_for_magic_npc(eventImage)}}},[(!_vm.eventAnimations[eventImage] && _vm.get_npc_img_url(eventImage, 'events', 'Event'))?_c('img',{staticClass:\"fadeIn\",attrs:{\"src\":_vm.get_npc_img_url(eventImage, 'events', 'Event'),\"alt\":eventImage,\"draggable\":\"false\"}}):_c('div',{staticClass:\"animation fadeIn\"},[_vm._l((_vm.eventAnimations[eventImage]),function(animationImageName){return [_c('img',{attrs:{\"src\":_vm.get_npc_img_url(animationImageName, 'animations'),\"alt\":animationImageName,\"draggable\":\"false\"}})]})],2)])}),_vm._v(\" \"),_c('div',{ref:\"dog\",staticClass:\"Dog\",style:(_vm.return_npc_style(_vm.dog))},[_c('img',{attrs:{\"src\":require('../images/world/NPC/dog.svg'),\"alt\":\"dog\",\"draggable\":\"false\"}})])],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./remind.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./remind.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./remind.vue?vue&type=template&id=9c92dd8a&scoped=true&\"\nimport script from \"./remind.vue?vue&type=script&lang=js&\"\nexport * from \"./remind.vue?vue&type=script&lang=js&\"\nimport style0 from \"./remind.vue?vue&type=style&index=0&id=9c92dd8a&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"9c92dd8a\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{ref:\"reminder\",staticClass:\"status_remind\"},[_c('div',{staticClass:\"remind_box\"},[_c('div',{staticClass:\"remind_title\"},[_vm._v(\"\\n 小提醒\\n \")]),_vm._v(\" \"),_c('div',{domProps:{\"innerHTML\":_vm._s(_vm.missionTitle)}})])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
![]()
\n
\n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modal.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./modal.vue?vue&type=template&id=f3a6a58c&scoped=true&\"\nimport script from \"./modal.vue?vue&type=script&lang=js&\"\nexport * from \"./modal.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"f3a6a58c\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.open)?_c('div',{directives:[{name:\"show\",rawName:\"v-show\",value:(_vm.show),expression:\"show\"}],ref:\"map_modal\",class:[{map_modal: true, white_modal: _vm.isWhite}, _vm.name]},[_c('div',{staticClass:\"dark_bg\",on:{\"click\":function($event){return _vm.closeModal(_vm.name)}}}),_vm._v(\" \"),_c('div',{staticClass:\"progress_bar\"}),_vm._v(\" \"),_c('div',{staticClass:\"modal\"},[_c('div',{staticClass:\"modal_box\"},[_c('div',{ref:\"scrollbox\",staticClass:\"modal_scroll_box\",attrs:{\"tabindex\":\"0\"}},[_c('div',{staticClass:\"modal_content\"},[_vm._t(\"default\")],2)])])]),_vm._v(\" \"),_c('img',{staticClass:\"Q_hint\",attrs:{\"src\":require('../../images/world/Q_hint'+(_vm.isWhite? '_black' : '')+'.svg')},on:{\"click\":function($event){return _vm.closeModal(_vm.name)}}})]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。
\n
\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。
\n
\n
\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。
\n 踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。
\n
\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./three_spiritual.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./three_spiritual.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./three_spiritual.vue?vue&type=template&id=65698642&scoped=true&\"\nimport script from \"./three_spiritual.vue?vue&type=script&lang=js&\"\nexport * from \"./three_spiritual.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"65698642\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ThreeSpiritual',\"title\":'三大精神'}},[_vm._v(\"\\n 踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。\"),_c('br'),_vm._v(\"\\n 踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。\"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n Hey,Buy in 一次兩百\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./test.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./test.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./test.vue?vue&type=template&id=1c3bffd7&scoped=true&\"\nimport script from \"./test.vue?vue&type=script&lang=js&\"\nexport * from \"./test.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"1c3bffd7\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'Test',\"title\":'德州撲克賭局',\"isWhite\":true}},[_vm._v(\"\\n Hey,Buy in 一次兩百\\n\")])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 青年迴響計畫,
協助青年為自己在意的社會議題跨出第一步行動,
只要帶著問題就可以參加,接著用行動,拉近自身與未知的距離。
\n 其實,要展開行動,沒有想像中那麼簡單,你的親朋好友會過度關心你賺不賺錢、有沒有未來;社會上有創業競賽,但大多是錦上添花型,等你已經相對成熟,再多推你一把,但從行動最開頭,最模糊的時候,反而沒有太多的協助。
\n \n 迴響計畫就是在協助這一塊,你只要帶著模糊的問題來,
\n 我們會提供行動的架構與方法、行動夥伴與教練的陪伴,
\n 協助你把一個模糊的問題慢慢轉換成你的第一步行動,
\n 讓你可以在行動中,直接試著為你覺得社會上怪怪的事情,做些什麼。\n
\n \n 三個月的計畫期間,團隊其實沒辦法大幅度促成議題改變,
\n 但當青年以行動代替抱怨、成為其他議題專案的 First Follower,
\n 甚至延續專案,變成更完整的方案、品牌、組織,
\n 讓未來有更多「社會的可能性」被看見,
\n 便能持續改善「社會議題看似完全無法解決」的惡性循環。\n
\n
\n
\n \n 主辦機關|青年們的後盾 教育部青年發展署
\n 承辦單位|有事找這家 Alpha Team
\n 協力夥伴|我們的戰友 好伴社計 DateMyself Octave 魚肚白設計
\n 合作單位|我們的基地 D-School@NTU 台大創新設計學院\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-intro.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-intro.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s0-intro.vue?vue&type=template&id=af73b36c&\"\nimport script from \"./s0-intro.vue?vue&type=script&lang=js&\"\nexport * from \"./s0-intro.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s0_intro'}},[_c('h4',[_vm._v(\"青年迴響計畫,\"),_c('br'),_vm._v(\"協助青年為自己在意的社會議題跨出第一步行動,\"),_c('br'),_vm._v(\"只要帶著問題就可以參加,接著用行動,拉近自身與未知的距離。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"其實,要展開行動,沒有想像中那麼簡單,你的親朋好友會過度關心你賺不賺錢、有沒有未來;社會上有創業競賽,但大多是錦上添花型,等你已經相對成熟,再多推你一把,但從行動最開頭,最模糊的時候,反而沒有太多的協助。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 迴響計畫就是在協助這一塊,你只要帶著模糊的問題來,\"),_c('br'),_vm._v(\"\\n 我們會提供行動的架構與方法、行動夥伴與教練的陪伴,\"),_c('br'),_vm._v(\"\\n 協助你把一個模糊的問題慢慢轉換成你的第一步行動,\"),_c('br'),_vm._v(\"\\n 讓你可以在行動中,直接試著為你覺得社會上怪怪的事情,做些什麼。\\n \")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 三個月的計畫期間,團隊其實沒辦法大幅度促成議題改變,\"),_c('br'),_vm._v(\"\\n 但當青年以行動代替抱怨、成為其他議題專案的 First Follower,\"),_c('br'),_vm._v(\"\\n 甚至延續專案,變成更完整的方案、品牌、組織,\"),_c('br'),_vm._v(\"\\n 讓未來有更多「社會的可能性」被看見,\"),_c('br'),_vm._v(\"\\n 便能持續改善「社會議題看似完全無法解決」的惡性循環。\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 主辦機關|青年們的後盾 教育部青年發展署\"),_c('br'),_vm._v(\"\\n 承辦單位|有事找這家 Alpha Team\"),_c('br'),_vm._v(\"\\n 協力夥伴|我們的戰友 好伴社計 DateMyself Octave 魚肚白設計\"),_c('br'),_vm._v(\"\\n 合作單位|我們的基地 D-School@NTU 台大創新設計學院\\n \")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n Rethink, As Always.
\n \n
▴
\n
\n 2017年 某一天
\n 有一個人問了另一個人
\n 我們如何能
\n 鼓勵更多年輕人
\n 為自己在意的事採取行動?
\n
\n 計畫展開 始於一句提問
\n 青年聚集 漸成迴響
\n
\n
▴
\n
\n 每一年都當最後一屆在辦
\n 每一屆盡力從行動者身上學習
\n 我們永遠會是一個「還在路上的」團隊
\n
\n 認識不同青年內心在意的社會議題
\n 用行動方法試出相對應的解法
\n 我們試圖透過流程「彰顯每一個提案的價值」
\n
\n
▴
\n
\n 因為 我們不只是創業競賽
\n 更想成為你第一步行動的夥伴
\n 因為 我們相信行動是有方法的
\n 而你可以從做得到的開始
\n
\n 只要讓行動展開
\n 就會離理想的世界更近一步
\n
\n
▴
\n
\n 成為 那第一聲響吧
\n
\n 勇敢指認房間裡的大象
\n 與社會談論你的觀點
\n 行動並進 嘗試解決、優化、創新的可能
\n
\n
▴
\n
\n 第一步 是所有開始前最重要的一步
\n
\n 當青年能如此攪動社會的秩序
\n 有沒有可能 也帶動銀髮族重新開始?
\n 有沒有機會 也鼓舞少年們舉手發言?
\n
\n
▴
\n
\n 你有問題 我們有方法
\n 你敢提問 我們就一起
\n
\n 這是青年迴響計畫
\n 最大膽、也最堅定的遙想
\n
\n
▴
\n
\n 於是 迴響 各式各樣
\n
\n 相信行動 於是行動
\n
\n 一路上 你會遇見同樣勇敢的人
\n 執行團隊、行動團隊、行動夥伴、教練
\n
\n 一路上 不是只有風光模樣
\n 會夾雜情緒 會跌撞狼狽
\n 再靠著方法 從失敗中汲取經驗
\n
\n
▴
\n
\n 你 我 眾人
\n 透過行動 思考 交流
\n 成為 你最獨一無二的樣子
\n 成為 自由之身
\n
\n 青年迴響 如你一般
\n 持續長成 持續試錯 持續擴張自己
\n 去發現自己和社會相處的百種方式
\n
\n
▴
\n
\n 我們無法設限 我們沒有絕對
\n 再一次 再說一次
\n 我們相信 行動 的價值
\n 面對理想和現實的落差
\n 唯有實際的經驗
\n 會告訴我們該如何拉近距離
\n
\n
▴
\n
\n 給你一個行動的藉口
\n 讓行動超展開
\n 於是 迴響是百花盛開的模樣:
\n 遞減瓶裝水的使用量、流浪犬和家長的關係、二手衣服的去處、女性胸部解放、大自然與人的交流、如何讓人在憂鬱中開口、牙醫教育如何普及、永續珠寶的發展、親子理財的重要性、更生人如何重新生活、月經汙名化等翻轉、學校經驗的傳承、都市居民如何參與公共討論、原住民小孩參與傳統文化、異溫層溝通、陰柔特質的力量… …
\n
\n
▴
\n
\n 你問 迴響是什麼?
\n 或許 你也可以成為我們其中之一的答案。\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-fire.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-fire.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s0-fire.vue?vue&type=template&id=7295d546&scoped=true&\"\nimport script from \"./s0-fire.vue?vue&type=script&lang=js&\"\nexport * from \"./s0-fire.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"7295d546\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s0_fire',\"title\":'營火',\"isWhite\":true}},[_c('h3',[_vm._v(\"Rethink, As Always.\")]),_vm._v(\" \"),_c('div',{staticClass:\"t-center\"},[_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 2017年 某一天\"),_c('br'),_vm._v(\"\\n 有一個人問了另一個人\"),_c('br'),_vm._v(\"\\n 我們如何能\"),_c('br'),_vm._v(\"\\n 鼓勵更多年輕人\"),_c('br'),_vm._v(\"\\n 為自己在意的事採取行動?\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 計畫展開 始於一句提問\"),_c('br'),_vm._v(\"\\n 青年聚集 漸成迴響\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 每一年都當最後一屆在辦\"),_c('br'),_vm._v(\"\\n 每一屆盡力從行動者身上學習\"),_c('br'),_vm._v(\"\\n 我們永遠會是一個「還在路上的」團隊\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 認識不同青年內心在意的社會議題\"),_c('br'),_vm._v(\"\\n 用行動方法試出相對應的解法\"),_c('br'),_vm._v(\"\\n 我們試圖透過流程「彰顯每一個提案的價值」\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 因為 我們不只是創業競賽\"),_c('br'),_vm._v(\"\\n 更想成為你第一步行動的夥伴\"),_c('br'),_vm._v(\"\\n 因為 我們相信行動是有方法的\"),_c('br'),_vm._v(\"\\n 而你可以從做得到的開始\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 只要讓行動展開\"),_c('br'),_vm._v(\"\\n 就會離理想的世界更近一步\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 成為 那第一聲響吧\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 勇敢指認房間裡的大象\"),_c('br'),_vm._v(\"\\n 與社會談論你的觀點\"),_c('br'),_vm._v(\"\\n 行動並進 嘗試解決、優化、創新的可能\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 第一步 是所有開始前最重要的一步\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 當青年能如此攪動社會的秩序\"),_c('br'),_vm._v(\"\\n 有沒有可能 也帶動銀髮族重新開始?\"),_c('br'),_vm._v(\"\\n 有沒有機會 也鼓舞少年們舉手發言?\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 你有問題 我們有方法\"),_c('br'),_vm._v(\"\\n 你敢提問 我們就一起\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 這是青年迴響計畫\"),_c('br'),_vm._v(\"\\n 最大膽、也最堅定的遙想\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 於是 迴響 各式各樣\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 相信行動 於是行動\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 一路上 你會遇見同樣勇敢的人\"),_c('br'),_vm._v(\"\\n 執行團隊、行動團隊、行動夥伴、教練\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 一路上 不是只有風光模樣\"),_c('br'),_vm._v(\"\\n 會夾雜情緒 會跌撞狼狽\"),_c('br'),_vm._v(\"\\n 再靠著方法 從失敗中汲取經驗\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 你 我 眾人\"),_c('br'),_vm._v(\"\\n 透過行動 思考 交流\"),_c('br'),_vm._v(\"\\n 成為 你最獨一無二的樣子\"),_c('br'),_vm._v(\"\\n 成為 自由之身\"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\"\\n 青年迴響 如你一般\"),_c('br'),_vm._v(\"\\n 持續長成 持續試錯 持續擴張自己\"),_c('br'),_vm._v(\"\\n 去發現自己和社會相處的百種方式\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 我們無法設限 我們沒有絕對\"),_c('br'),_vm._v(\"\\n 再一次 再說一次\"),_c('br'),_vm._v(\"\\n 我們相信 行動 的價值\"),_c('br'),_vm._v(\"\\n 面對理想和現實的落差\"),_c('br'),_vm._v(\"\\n 唯有實際的經驗\"),_c('br'),_vm._v(\"\\n 會告訴我們該如何拉近距離\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 給你一個行動的藉口\"),_c('br'),_vm._v(\"\\n 讓行動超展開\"),_c('br'),_vm._v(\"\\n 於是 迴響是百花盛開的模樣:\"),_c('br'),_vm._v(\"\\n 遞減瓶裝水的使用量、流浪犬和家長的關係、二手衣服的去處、女性胸部解放、大自然與人的交流、如何讓人在憂鬱中開口、牙醫教育如何普及、永續珠寶的發展、親子理財的重要性、更生人如何重新生活、月經汙名化等翻轉、學校經驗的傳承、都市居民如何參與公共討論、原住民小孩參與傳統文化、異溫層溝通、陰柔特質的力量… …\"),_c('br')]),_vm._v(\" \"),_c('p',[_vm._v(\"▴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n 你問 迴響是什麼?\"),_c('br'),_vm._v(\"\\n 或許 你也可以成為我們其中之一的答案。\\n \")])])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 迴響的精采與豐盛,只有親自體會,
\n 在此之前,邀您打開想像,
\n 觀賞行動者在迴響會遇到的里程碑,
\n 一起感受所有行動者創造的珍貴時刻。\n
\n
\n
\n\n 計畫說明會
\n
\n 參與說明會就是我的第一步!
\n 你可能不知道,四年來有一定程度的行動者,就是在說明會的現場被點燃,甚至就是他關鍵的轉捩點,開始認識不同行動者的社會議題,因為過去「行動」不在他們的選項裡。
\n 迴響珍惜每一次和大眾相遇的機會,從生活經驗談「行動」百百種的模樣、引導反思生活上被限制行動的情境、持續討論大眾心中隱約覺得怪怪的地方、讓與會者也能寫下簡短的宣言,和執行團隊、教練、講者、同行聽眾,初步談談模糊的感受和過往的經驗。
\n 社會裡,除了存在著人們避而不談的大象現況,更多的是正等著時機參與行動的響應者,看著每一雙被撼動的眼睛,我們知道我們為何而堅持、為何而在。
\n 在此,也誠心謝謝這四年所有的工作人員,和迴響一同共創無數場、線上線下、無法被複製的迴響說明會。
\n
\n
\n
\n
\n\n 任務包審核
\n
\n 累積 819 人參與線上任務,從提問開始展開行動
\n 迴響的網路提案門檻,非常精要:「一句不帶任何假設的提問」就是你的提案,而只要通過這項提案(但其實問對問題,也不簡單喔~),就能展開線上的任務包挑戰。
\n 審核任務包的機制,正是以青年迴響計畫的教練們為首,陪伴大家一起逐步展開各自的行動,從訪談紀錄、整理洞察、驗證釐清,到發想出可以實際行動的方案。
\n 每一個提案都讓我們重新認識台灣現況,不同議題帶來新的學習,我們必須更加用心的反饋和討論,提出團隊可能面臨的關卡,避免陷入自圓其說、無意識地陷入行動的陷阱、糾結在無法觸碰的框架......
\n 我們不會比參賽者更有先見之明,能預先知道解決之道,只能陪伴行動團隊提問,反覆驗證,從手中一步步穫得的資訊,換取新的觀點,找到一個「現在可以做的」切入點,就一起實際試試看吧!
\n
\n
\n
\n
\n\n 青年迴響大會師
\n
\n 行動者的開學典禮,為同樣原因而聚集
\n 經歷過任務包的夥伴們,其實早已踏上各自的英雄旅程,而大會師是所有人第一次面對面的場合。
\n 聚集各路人馬,最難得可貴的,就是能坐下來,好好認識彼此:「從哪裡來?為何而來?拓展了什麼視野?」
\n 最重要的,就是真的能遇到同樣堅持、學習如何面對失敗的同路人,不只是會遇見其他的行動團隊,還有迴響的團隊、持續成長的行動夥伴,和人們相互共創的現場連結。
\n 這兩天的活動,也會再讓大家理解什麼是行動迴圈,甚至能和教練一起討論卡關的部分,當又再次開始面對自我批判否定的磨練時,旁邊有一群夥伴,也都正在誠實釐清:「是否真的在意這個提案?如果我嘗試沒成功,我該怎麼調整?還是放棄?」
\n 行動者的開學典禮,將會因為每個人獨一無二的行動旅程,而有各自精采的收穫。
\n
\n
\n
\n
\n\n Pitch Day 評選
\n
\n 當你踏上未竟之路,「收穫」才是真正的成功
\n 迴響計畫相信,當一個人的提案,經過了行動、反思,來回的驗證並大膽再繼續試錯之後,就要更勇敢地,向世界分享你的看見,行動團隊將會用 12-15 分鐘的時間進行提案,與評審發表時,就彷彿是向外再踏一步,讓更多未知的資源、可能性,因你而生。
\n 每一年聚集的評審陣容,都因當年團隊的議題而來,他們都是相關議題的深耕者、創業家、革新者,由這些先行者作為團隊的評審,光是想像就非常興奮。
\n 對迴響而言,重要的不是能馬上成功,或是要立即找到最有效的解決方案,而是在這一連串長達三個月以上的體驗中,行動者真切地體驗過什麼是失敗、有達成短期目標、想到的方法讓利害關係人有所共鳴、能為議題多增加不同時代的觀點和切點,讓自己所投入的時間、精力,都轉換成社會上的資源。
\n 這些先行的評審們,非常樂意和團隊們討論這些尚未被驗證、還不太成熟的想法,願意聽聽青年們落地的執行成果後,用全力相挺、支持每一個想要延續的行動,在 Pitch Day 當天,都會分享自身所擁有的經驗、建議和心法。
\n 這樣的連結,無論會不會直接或間接創造未來的資源,都已經讓每一位行動者明白:「只要自己行動、嘗試了,資源就在自己的手中。」
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-epitome.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-epitome.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s0-epitome.vue?vue&type=template&id=60785cf8&\"\nimport script from \"./s0-epitome.vue?vue&type=script&lang=js&\"\nexport * from \"./s0-epitome.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s0_epitome'}},[_c('p',[_vm._v(\"\\n 迴響的精采與豐盛,只有親自體會,\"),_c('br'),_vm._v(\"\\n 在此之前,邀您打開想像,\"),_c('br'),_vm._v(\"\\n 觀賞行動者在迴響會遇到的里程碑,\"),_c('br'),_vm._v(\"\\n 一起感受所有行動者創造的珍貴時刻。\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"計畫說明會\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/epitome-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"參與說明會就是我的第一步!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"你可能不知道,四年來有一定程度的行動者,就是在說明會的現場被點燃,甚至就是他關鍵的轉捩點,開始認識不同行動者的社會議題,因為過去「行動」不在他們的選項裡。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響珍惜每一次和大眾相遇的機會,從生活經驗談「行動」百百種的模樣、引導反思生活上被限制行動的情境、持續討論大眾心中隱約覺得怪怪的地方、讓與會者也能寫下簡短的宣言,和執行團隊、教練、講者、同行聽眾,初步談談模糊的感受和過往的經驗。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"社會裡,除了存在著人們避而不談的大象現況,更多的是正等著時機參與行動的響應者,看著每一雙被撼動的眼睛,我們知道我們為何而堅持、為何而在。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在此,也誠心謝謝這四年所有的工作人員,和迴響一同共創無數場、線上線下、無法被複製的迴響說明會。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"任務包審核\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/epitome-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"累積 819 人參與線上任務,從提問開始展開行動\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的網路提案門檻,非常精要:「一句不帶任何假設的提問」就是你的提案,而只要通過這項提案(但其實問對問題,也不簡單喔~),就能展開線上的任務包挑戰。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"審核任務包的機制,正是以青年迴響計畫的教練們為首,陪伴大家一起逐步展開各自的行動,從訪談紀錄、整理洞察、驗證釐清,到發想出可以實際行動的方案。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每一個提案都讓我們重新認識台灣現況,不同議題帶來新的學習,我們必須更加用心的反饋和討論,提出團隊可能面臨的關卡,避免陷入自圓其說、無意識地陷入行動的陷阱、糾結在無法觸碰的框架......\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們不會比參賽者更有先見之明,能預先知道解決之道,只能陪伴行動團隊提問,反覆驗證,從手中一步步穫得的資訊,換取新的觀點,找到一個「現在可以做的」切入點,就一起實際試試看吧!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"青年迴響大會師\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/epitome-3.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"行動者的開學典禮,為同樣原因而聚集\")]),_vm._v(\" \"),_c('p',[_vm._v(\"經歷過任務包的夥伴們,其實早已踏上各自的英雄旅程,而大會師是所有人第一次面對面的場合。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"聚集各路人馬,最難得可貴的,就是能坐下來,好好認識彼此:「從哪裡來?為何而來?拓展了什麼視野?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最重要的,就是真的能遇到同樣堅持、學習如何面對失敗的同路人,不只是會遇見其他的行動團隊,還有迴響的團隊、持續成長的行動夥伴,和人們相互共創的現場連結。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這兩天的活動,也會再讓大家理解什麼是行動迴圈,甚至能和教練一起討論卡關的部分,當又再次開始面對自我批判否定的磨練時,旁邊有一群夥伴,也都正在誠實釐清:「是否真的在意這個提案?如果我嘗試沒成功,我該怎麼調整?還是放棄?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動者的開學典禮,將會因為每個人獨一無二的行動旅程,而有各自精采的收穫。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"Pitch Day 評選\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/epitome-4.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"當你踏上未竟之路,「收穫」才是真正的成功\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響計畫相信,當一個人的提案,經過了行動、反思,來回的驗證並大膽再繼續試錯之後,就要更勇敢地,向世界分享你的看見,行動團隊將會用 12-15 分鐘的時間進行提案,與評審發表時,就彷彿是向外再踏一步,讓更多未知的資源、可能性,因你而生。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每一年聚集的評審陣容,都因當年團隊的議題而來,他們都是相關議題的深耕者、創業家、革新者,由這些先行者作為團隊的評審,光是想像就非常興奮。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"對迴響而言,重要的不是能馬上成功,或是要立即找到最有效的解決方案,而是在這一連串長達三個月以上的體驗中,行動者真切地體驗過什麼是失敗、有達成短期目標、想到的方法讓利害關係人有所共鳴、能為議題多增加不同時代的觀點和切點,讓自己所投入的時間、精力,都轉換成社會上的資源。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些先行的評審們,非常樂意和團隊們討論這些尚未被驗證、還不太成熟的想法,願意聽聽青年們落地的執行成果後,用全力相挺、支持每一個想要延續的行動,在 Pitch Day 當天,都會分享自身所擁有的經驗、建議和心法。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這樣的連結,無論會不會直接或間接創造未來的資源,都已經讓每一位行動者明白:「只要自己行動、嘗試了,資源就在自己的手中。」\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動工具櫃
\n 有效的行動是可以學習跟進步的
\n 踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。
\n 迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。
\n
\n 階段設計
\n 一個行動如果有多重目標的話,常常會多頭馬車,不只重要的事情沒有達成,也可能消耗團隊間的合作動能。
\n 把行動拆成「來吧!問題」、「去吧!行動」、「上吧!大夥」的三個行動階段,看似口語化,實際上卻是在指引團隊每個階段的清楚目標,比較能夠按部就班達到。
\n 有這樣的路徑,也可以比較容易判斷問題的先後順序。迴響不在一開始就要求團隊找到商業模式、找到倡議目標,不是因為覺得那不重要、看輕長遠計畫的價值,而是希望留給團隊一個行動的空間,先專注在「想要回應的問題是什麼?」這個根本問題上,而不是把心力放在現階段本來就無法回答的挑戰上,最終導致放棄。
\n
\n 任務包挑戰
\n 在「來吧!問題」階段,是你從想法到行動的第一步,如果你本來的方式已經有用了,那其實⋯大概也不用來參加迴響計畫了。
\n 任務包挑戰一共有六項,每項都有完整的說明、操作步驟、技巧示範影片,將「釐清跟認識議題」、「反思和辨認自己的假設」、「發想」和「行動計畫」拆解開來,讓你每個階段都能從做得到的開始,逐步因為嘗試了任務包中的行動,而跨出原本的思考範疇,更了解議題,找到能有效前進的切入點。
\n 每一屆計畫都會有 10~15 位受過訓練,並有實務操作經驗的教練協助審核,以「我們如何能幫助提案團隊們更好的行動」為目標,在每一次團隊提交任務包後給予回饋。各階段有清楚的通關條件,如果沒通過,你也會收到明確的調整方向,可以重新挑戰。
\n 相比於請大家交一份完整的報告來給主辦單位評分,我們相信我們也用行動跟團隊硬碰硬,比較能讓你有一起動起來的力氣,也更符合迴響在意行動力的意義。簡單來說,你在行動的時候,我們跑得也很喘啦!來尬車啊!
\n 就算最終沒有通過篩選,在過程中也可以說是直接完成了一次專案式學習,學習一種面對議題的方式。
\n
\n 行動迴圈
\n
\n 有效的行動不是單純的「忙碌」,而是會讓人「越做越深」。很多團隊在採取了第一步行動後,其實不知道怎麼消化行動的成果,指引接下來還可以往哪裡去。
\n 行動迴圈是改良自「設計思考」與「精實執行」兩種方法論的流程和工具,在行動、反思和發想部分,有具體的方法引導我們達成階段性目標,在新資訊、新觀點和下一步行動方案處,有清楚的學習單,類似商業模式帆布(Business Model Canvas),幫助我們整理階段性成果,也讓不同的團隊得以分享行動過程中的學習。
\n 行動迴圈的設計,讓你在團隊目標有些模糊的狀況下,仍保有基本的邏輯,凝聚團隊內的共識,讓每一次的討論、行動都能更有意義。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-tools.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-tools.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s0-tools.vue?vue&type=template&id=1bf13ef2&\"\nimport script from \"./s0-tools.vue?vue&type=script&lang=js&\"\nexport * from \"./s0-tools.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s0_tools',\"isWhite\":true}},[_c('h3',[_vm._v(\"行動工具櫃\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"有效的行動是可以學習跟進步的\")]),_vm._v(\" \"),_c('p',[_vm._v(\"踏上行動之路,登頂除了要有決心,其實還有很大一部分是技術。我們相信成功的行動不是一命二運三風水式的隨機產物,與其指望更多的時勢造出來的英雄,把社會上不理想的狀況變不見,不如讓更多看似平凡的人,也能有效行動。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響計畫從 2017 年開始,每年向計畫中的 20-40 組團隊學習、測試,從他們每一個團隊身上ㄎ一ㄤ(台語中類似借用的意思)了一些有用的裝備,開發出能幫助更多人的行動方法論!讓你在參加的過程更容易定位自己的問題、找到排除困難的可能。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"階段設計\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一個行動如果有多重目標的話,常常會多頭馬車,不只重要的事情沒有達成,也可能消耗團隊間的合作動能。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"把行動拆成「來吧!問題」、「去吧!行動」、「上吧!大夥」的三個行動階段,看似口語化,實際上卻是在指引團隊每個階段的清楚目標,比較能夠按部就班達到。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"有這樣的路徑,也可以比較容易判斷問題的先後順序。迴響不在一開始就要求團隊找到商業模式、找到倡議目標,不是因為覺得那不重要、看輕長遠計畫的價值,而是希望留給團隊一個行動的空間,先專注在「想要回應的問題是什麼?」這個根本問題上,而不是把心力放在現階段本來就無法回答的挑戰上,最終導致放棄。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"任務包挑戰\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在「來吧!問題」階段,是你從想法到行動的第一步,如果你本來的方式已經有用了,那其實⋯大概也不用來參加迴響計畫了。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"任務包挑戰一共有六項,每項都有完整的說明、操作步驟、技巧示範影片,將「釐清跟認識議題」、「反思和辨認自己的假設」、「發想」和「行動計畫」拆解開來,讓你每個階段都能從做得到的開始,逐步因為嘗試了任務包中的行動,而跨出原本的思考範疇,更了解議題,找到能有效前進的切入點。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每一屆計畫都會有 10~15 位受過訓練,並有實務操作經驗的教練協助審核,以「我們如何能幫助提案團隊們更好的行動」為目標,在每一次團隊提交任務包後給予回饋。各階段有清楚的通關條件,如果沒通過,你也會收到明確的調整方向,可以重新挑戰。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"相比於請大家交一份完整的報告來給主辦單位評分,我們相信我們也用行動跟團隊硬碰硬,比較能讓你有一起動起來的力氣,也更符合迴響在意行動力的意義。簡單來說,你在行動的時候,我們跑得也很喘啦!來尬車啊!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"就算最終沒有通過篩選,在過程中也可以說是直接完成了一次專案式學習,學習一種面對議題的方式。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"行動迴圈\")]),_vm._v(\" \"),_c('img',{attrs:{\"calss\":\"w-350\",\"src\":require(\"./images/action-loop.svg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"有效的行動不是單純的「忙碌」,而是會讓人「越做越深」。很多團隊在採取了第一步行動後,其實不知道怎麼消化行動的成果,指引接下來還可以往哪裡去。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動迴圈是改良自「設計思考」與「精實執行」兩種方法論的流程和工具,在行動、反思和發想部分,有具體的方法引導我們達成階段性目標,在新資訊、新觀點和下一步行動方案處,有清楚的學習單,類似商業模式帆布(Business Model Canvas),幫助我們整理階段性成果,也讓不同的團隊得以分享行動過程中的學習。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動迴圈的設計,讓你在團隊目標有些模糊的狀況下,仍保有基本的邏輯,凝聚團隊內的共識,讓每一次的討論、行動都能更有意義。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n 警告
\n 因應颱風烟花來襲造成吊橋損毀,為確保行動者安全,迴圈森林區及相關設施暫時封閉,預計將於 2021/7/30 再次開放。
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-board.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s0-board.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s0-board.vue?vue&type=template&id=4f51ccd1&\"\nimport script from \"./s0-board.vue?vue&type=script&lang=js&\"\nexport * from \"./s0-board.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s0_board',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"警告\")]),_vm._v(\" \"),_c('p',[_vm._v(\"因應颱風烟花來襲造成吊橋損毀,為確保行動者安全,迴圈森林區及相關設施暫時封閉,預計將於 2021/7/30 再次開放。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段話⋯⋯)
\n
\n
\n 「這群志工夥伴從招募進來後就不會離開,後續有什麼活動大家都很會參與,就好像磁鐵一樣,這裡有股莫名的引力吸引著他們,而為什麼會如此是因為對志工動機進行蠻嚴格的篩選,會希望進來的志工,對於迴響或對於團隊都有一定程度的好奇以及自我想要學習與了解的事情,也因此可能填寫志工報名表單時,沒有寫的很強烈的好奇與積極心,有可能我們就是在另一個更適合的地方見面了。
\n 那也因為我們招募這樣的志工,培訓說明會簡報就是在志工訓練環節裡面最重要的一環,在簡報中要傳遞迴響的團隊氛圍、處事態度與合作默契,並在說明會現場設計執行團隊與志工互相認識的橋斷,因為在活動當下沒有特別分誰是志工,大家都是迴響執行團隊引以為傲的一員,這是從第一屆的志工行前說明會就有這樣的感覺,只是二屆在把他更加釐清了!
\n 這是從我在迴響計畫第一屆擔任志工時,參與志工說明會那時心裡滿忐忑不安,也很好奇自己會做什麼事,對於迴響是什麼也好奇,對於參與志工之後的自己也好奇,這場說明會不是那麼的正式,非常自由和有趣,團隊內部自我介紹的每一個人是那麼的新奇和開放,說明過程中Jarah說過其實你就是我們的一份子,在那刻得到了份歸屬感,迴響志工從二屆到現在想要給志工們的感受其中之一,就是個歸屬感,想要讓你認同自己的價值與行動,一切都是有機會的。
\n 我覺得應該就是很謝謝他們願意來當我們的志工,在活動過程中,那麼的用心感受與付出,如果沒有他們,迴響可能不會那麼成功!」
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-1.vue?vue&type=template&id=f2187248&\"\nimport script from \"./giant-room-1.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_1'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段話⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"「這群志工夥伴從招募進來後就不會離開,後續有什麼活動大家都很會參與,就好像磁鐵一樣,這裡有股莫名的引力吸引著他們,而為什麼會如此是因為對志工動機進行蠻嚴格的篩選,會希望進來的志工,對於迴響或對於團隊都有一定程度的好奇以及自我想要學習與了解的事情,也因此可能填寫志工報名表單時,沒有寫的很強烈的好奇與積極心,有可能我們就是在另一個更適合的地方見面了。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"那也因為我們招募這樣的志工,培訓說明會簡報就是在志工訓練環節裡面最重要的一環,在簡報中要傳遞迴響的團隊氛圍、處事態度與合作默契,並在說明會現場設計執行團隊與志工互相認識的橋斷,因為在活動當下沒有特別分誰是志工,大家都是迴響執行團隊引以為傲的一員,這是從第一屆的志工行前說明會就有這樣的感覺,只是二屆在把他更加釐清了!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這是從我在迴響計畫第一屆擔任志工時,參與志工說明會那時心裡滿忐忑不安,也很好奇自己會做什麼事,對於迴響是什麼也好奇,對於參與志工之後的自己也好奇,這場說明會不是那麼的正式,非常自由和有趣,團隊內部自我介紹的每一個人是那麼的新奇和開放,說明過程中Jarah說過其實你就是我們的一份子,在那刻得到了份歸屬感,迴響志工從二屆到現在想要給志工們的感受其中之一,就是個歸屬感,想要讓你認同自己的價值與行動,一切都是有機會的。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我覺得應該就是很謝謝他們願意來當我們的志工,在活動過程中,那麼的用心感受與付出,如果沒有他們,迴響可能不會那麼成功!」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段筆記⋯⋯)
\n
\n
\n 「沒有真正的行動時,要回看自己的熱情,一直想尋求解答時,先學會重新描述問題。
\n 團隊開始行動後,難免會因為多處碰壁而不相信自己、對現況感到不安,開始想要延後行動,和專家或更有經驗的人尋求解答。但,採取行動其實是很神奇的事情,有的時候行動本身就是目的,團隊會迴避知道最終的答案,害怕發現自己過往所有的行動,會不會都是徒勞,沒辦法軸轉,也停不下來。
\n 為了讓前進的方向能深刻的被檢視,避免我們藉由支線的行動迴避關鍵的問題,只是想要『看起來』很努力,迴響計畫在大會師後,除了設計思考教練,也同時會為團隊安排一位行動夥伴。」
\n
\n
\n 這段文案原意是用在介紹行動夥伴對青年團隊的意義為何,現在想起來,對迴響計畫本身也很適用。第一屆時只是帶著一股憨膽,相信行動是有價值的,第一步行動是有方法的,我們一定可以整理出來!但也是在一邊怕、一邊訪談當年的 15 位行動夥伴後,才真正確信是如此。關於行動夥伴,依舊非常清楚每一次約訪時的場景,在第一屆大會師,湊齊所有人在一桌享用晚會的餐點時,我們根本不敢靠近,覺得那是神聖不可侵犯的領域,自己如此渺小不堪,沒有值得交流的東西。
\n 四年以後,一樣在大會師的現場,在向青年團隊介紹行動夥伴前,我們在休息室裡像許久不見的老朋友那樣打鬧,現在想起來,這大概就是成為夥伴的魔法了吧。先接受所有關於自己的、不堪的狀況,不刻意凸顯,也不刻意隱藏,隨著時間過去,一直持續帶著和原來一樣的信念,做著該做的事情,當所有人都能確定你會在那裡,用某個一如既往的姿態,朝那個一再被訴說的目的地前進,「夥伴」關係就建立起來了。
\n 同時,這種夥伴關係,是可以擴大、可以超連結的。我們將行動夥伴介紹給青年團隊,與其說是運用計畫經費「安排業師」,不如說是把夥伴對我們的信任給出去,同時也確信這些進入大會師的青年,都能掌握同樣的魔法,成為彼此行動的夥伴。
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-2.vue?vue&type=template&id=35b4a2a0&\"\nimport script from \"./giant-room-2.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_2'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段筆記⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"「沒有真正的行動時,要回看自己的熱情,一直想尋求解答時,先學會重新描述問題。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"團隊開始行動後,難免會因為多處碰壁而不相信自己、對現況感到不安,開始想要延後行動,和專家或更有經驗的人尋求解答。但,採取行動其實是很神奇的事情,有的時候行動本身就是目的,團隊會迴避知道最終的答案,害怕發現自己過往所有的行動,會不會都是徒勞,沒辦法軸轉,也停不下來。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"為了讓前進的方向能深刻的被檢視,避免我們藉由支線的行動迴避關鍵的問題,只是想要『看起來』很努力,迴響計畫在大會師後,除了設計思考教練,也同時會為團隊安排一位行動夥伴。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"這段文案原意是用在介紹行動夥伴對青年團隊的意義為何,現在想起來,對迴響計畫本身也很適用。第一屆時只是帶著一股憨膽,相信行動是有價值的,第一步行動是有方法的,我們一定可以整理出來!但也是在一邊怕、一邊訪談當年的 15 位行動夥伴後,才真正確信是如此。關於行動夥伴,依舊非常清楚每一次約訪時的場景,在第一屆大會師,湊齊所有人在一桌享用晚會的餐點時,我們根本不敢靠近,覺得那是神聖不可侵犯的領域,自己如此渺小不堪,沒有值得交流的東西。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"四年以後,一樣在大會師的現場,在向青年團隊介紹行動夥伴前,我們在休息室裡像許久不見的老朋友那樣打鬧,現在想起來,這大概就是成為夥伴的魔法了吧。先接受所有關於自己的、不堪的狀況,不刻意凸顯,也不刻意隱藏,隨著時間過去,一直持續帶著和原來一樣的信念,做著該做的事情,當所有人都能確定你會在那裡,用某個一如既往的姿態,朝那個一再被訴說的目的地前進,「夥伴」關係就建立起來了。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"同時,這種夥伴關係,是可以擴大、可以超連結的。我們將行動夥伴介紹給青年團隊,與其說是運用計畫經費「安排業師」,不如說是把夥伴對我們的信任給出去,同時也確信這些進入大會師的青年,都能掌握同樣的魔法,成為彼此行動的夥伴。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段文字⋯⋯)
\n
\n
\n 在行動的開始階段,團隊還有許多需要磨合的地方,對於目標、方向的觀點可能也很分歧,如果恰好處的來,能夠直來直往的討論,衝突很快就會變成新的行動,然而,如果頻率不對,在大部分的情況下,可能會迴避衝突,讓其實應該更早出現、更早討論的矛盾變成未來的定時炸彈。
\n 為了讓行動不會靠緣分,我們會為晉級大會師的每一個組別,安排一位「設計思考教練」。從實體活動大會師開始,每組會依據團隊溝通狀況、議題方向,配對一位教練,第一線了解團隊困難,陪伴團隊將問題化為學習的機會、將衝突化為對話的開端。
\n
\n 迴響第四屆的教練頭之一 姚瑞鵬 常說,每年擔任迴響的教練,對他而言是一種贖罪,知道無論如何這一年有做了對社會有益的事。教練的任務到了中後期就開始要面對各種拔河,為了更瞭解如何引導團隊而深入議題,因為深入議題而適合於扮演團隊成員之一的角色,又因為擔心自己的投入會擠壓到團隊行動的機會,而常常要顯得很抽離。這是迴響歷年都會遭遇的矛盾,卻也是張力的主要來源,有矛盾,才能打開選擇的空間,沒有指定一種方式,才會形成各種方式都有可能的多元局面。
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-3.vue?vue&type=template&id=ebc3b7d8&\"\nimport script from \"./giant-room-3.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_3'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段文字⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"在行動的開始階段,團隊還有許多需要磨合的地方,對於目標、方向的觀點可能也很分歧,如果恰好處的來,能夠直來直往的討論,衝突很快就會變成新的行動,然而,如果頻率不對,在大部分的情況下,可能會迴避衝突,讓其實應該更早出現、更早討論的矛盾變成未來的定時炸彈。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"為了讓行動不會靠緣分,我們會為晉級大會師的每一個組別,安排一位「設計思考教練」。從實體活動大會師開始,每組會依據團隊溝通狀況、議題方向,配對一位教練,第一線了解團隊困難,陪伴團隊將問題化為學習的機會、將衝突化為對話的開端。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"迴響第四屆的教練頭之一 姚瑞鵬 常說,每年擔任迴響的教練,對他而言是一種贖罪,知道無論如何這一年有做了對社會有益的事。教練的任務到了中後期就開始要面對各種拔河,為了更瞭解如何引導團隊而深入議題,因為深入議題而適合於扮演團隊成員之一的角色,又因為擔心自己的投入會擠壓到團隊行動的機會,而常常要顯得很抽離。這是迴響歷年都會遭遇的矛盾,卻也是張力的主要來源,有矛盾,才能打開選擇的空間,沒有指定一種方式,才會形成各種方式都有可能的多元局面。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段文字⋯⋯)
\n
\n
\n 我們知道議題深度有時不能靠一時的行動,而是需要時間的累積,我們希望讓團隊在較少資源的情況下,還是能找到槓桿目前行動能量,持續創造更多價值的機會點,其中一個方式,我們認為是讓更多人參與你的行動,也就是「號召」。
\n 議題團隊是一群在各自議題上都有創新實踐經驗的社會創新組織,針對「集眾人之力」這個主題組成共備團體,找到讓一群人一起促成一件事的方法。事實上,這個團體有時候更像一個心理互助會,在交流組織和志工的反思過程中相濡以沫。因為就算是已經有組織、有實作經驗的議題團隊,也時常需要煩惱如何更有效的行動,並且找到資源。
\n 好民文化行動協會的芳如就曾說:
\n 「回想半年前,有一段時間非常沮喪,既要為組織運作所需的財務週轉想辦法,又希望趁每年推動大型專案時做青年志工培力。想做事,又擔心沒資源。這時候剛好遇到創新志工計畫,好民便以「議題成功嶺」來提案,希望透過主題式的長期活動(自由路上藝術節為期2個月、共15個活動),作為志工的實際演練場。
\n 現在想起來不可思議,真心感謝當時投入的夥伴,讓藝術節能一邊舉辦活動、一邊進行志工培力,讓優化的力量在活動進行中產生,讓活動在執行中不斷優化。優化,不再是死板的檢討報告,而是行動者能量的具體呈現!我們的志工如果每堂培訓都參加了,就有:人文社會課程的培訓(轉型正義)、線上活動宣傳、與社會大眾應對溝通的技巧提升、提升活動支援的技巧、何謂專業活動行政心法、活動攝影增能、媒體寫作、甚至如何開檢討會。」
\n 當如何「集眾人之力」被反覆思考,創新志工模式就有更多種的可能。若要動員不同專業、不同觀點的異溫層,對自己在意的議題,要挖的越深,才能夠找出底層溝通的邏輯。深化議題之後,如何號召、培訓響應者? 如何做議題行銷? 如何做志工保溫?都是和更大的社會連結的重要問題。
\n 而這些志工經驗常是許多青年生命轉變的關鍵時刻,這些議題團隊便想方設法,為發展志工的典範轉移而努力。
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-4.vue?vue&type=template&id=adc4397a&\"\nimport script from \"./giant-room-4.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_4'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段文字⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"我們知道議題深度有時不能靠一時的行動,而是需要時間的累積,我們希望讓團隊在較少資源的情況下,還是能找到槓桿目前行動能量,持續創造更多價值的機會點,其中一個方式,我們認為是讓更多人參與你的行動,也就是「號召」。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"議題團隊是一群在各自議題上都有創新實踐經驗的社會創新組織,針對「集眾人之力」這個主題組成共備團體,找到讓一群人一起促成一件事的方法。事實上,這個團體有時候更像一個心理互助會,在交流組織和志工的反思過程中相濡以沫。因為就算是已經有組織、有實作經驗的議題團隊,也時常需要煩惱如何更有效的行動,並且找到資源。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"好民文化行動協會的芳如就曾說:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「回想半年前,有一段時間非常沮喪,既要為組織運作所需的財務週轉想辦法,又希望趁每年推動大型專案時做青年志工培力。想做事,又擔心沒資源。這時候剛好遇到創新志工計畫,好民便以「議題成功嶺」來提案,希望透過主題式的長期活動(自由路上藝術節為期2個月、共15個活動),作為志工的實際演練場。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"現在想起來不可思議,真心感謝當時投入的夥伴,讓藝術節能一邊舉辦活動、一邊進行志工培力,讓優化的力量在活動進行中產生,讓活動在執行中不斷優化。優化,不再是死板的檢討報告,而是行動者能量的具體呈現!我們的志工如果每堂培訓都參加了,就有:人文社會課程的培訓(轉型正義)、線上活動宣傳、與社會大眾應對溝通的技巧提升、提升活動支援的技巧、何謂專業活動行政心法、活動攝影增能、媒體寫作、甚至如何開檢討會。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當如何「集眾人之力」被反覆思考,創新志工模式就有更多種的可能。若要動員不同專業、不同觀點的異溫層,對自己在意的議題,要挖的越深,才能夠找出底層溝通的邏輯。深化議題之後,如何號召、培訓響應者? 如何做議題行銷? 如何做志工保溫?都是和更大的社會連結的重要問題。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而這些志工經驗常是許多青年生命轉變的關鍵時刻,這些議題團隊便想方設法,為發展志工的典範轉移而努力。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段話⋯⋯)
\n
\n
\n 「第一年的過程當中,我有一段時間生病,中間過程沒有參與,後來我再加入的時候是最終成果展,同時,青年署當時有另一個大計畫在華山展覽。我是負責接待部長的,部長那時候從某一個展場過來,覺得那一個展還好,就提早來迴響的展,他一開始來的時候,並不是我們原本預期他要出現的時間點,大家如常的進行,而部長就站在那邊,就聽完大家現在正在做的事,然後他和十個攤位的青年,一組組深入的對談,我相信他那天是有感動的。
\n 我大概有接待過他幾次,好幾次的大活動都發現他沒有待的時間像我們想像那麼久,迴響這次這麼專心的聽完,跟每一個團隊互動,也是印象唯一一次。
\n 成果展那天,和團隊的個性有關,整個策展很大張旗鼓的布置,對傳統公部門觀點來說是不是可以省?是不是不必要?但是我當下就明白,每一個展場的東西,無論是人或非人的布置也好,對每一個行動者都會造成影響的,即便是一個眼神,或是一個理念,都會讓這個行動長的不一樣,這些外溢的校果,是不可預期的驚喜。
\n 這個計畫讓我知道,無論你是哪個角色,身份高低,都會被參與的人感動,也會覺得我們作為公部門,應該還可以再做些甚麼。
\n 我更相信,任何年輕人,即便小小的點、小小的想法,可能有點大膽、有點天馬行空,過去即便沒有看過的案子,感覺起來不可能發生,我都要給他們機會,讓他們可以萌芽,迴響也影響我,會去鼓勵每一個人,如果他們來到我面前,告訴我一個想法,我也都會盡能力所及,鼓勵大家去試試看。」
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-5.vue?vue&type=template&id=4d74b9d1&\"\nimport script from \"./giant-room-5.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_5'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段話⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"「第一年的過程當中,我有一段時間生病,中間過程沒有參與,後來我再加入的時候是最終成果展,同時,青年署當時有另一個大計畫在華山展覽。我是負責接待部長的,部長那時候從某一個展場過來,覺得那一個展還好,就提早來迴響的展,他一開始來的時候,並不是我們原本預期他要出現的時間點,大家如常的進行,而部長就站在那邊,就聽完大家現在正在做的事,然後他和十個攤位的青年,一組組深入的對談,我相信他那天是有感動的。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我大概有接待過他幾次,好幾次的大活動都發現他沒有待的時間像我們想像那麼久,迴響這次這麼專心的聽完,跟每一個團隊互動,也是印象唯一一次。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"成果展那天,和團隊的個性有關,整個策展很大張旗鼓的布置,對傳統公部門觀點來說是不是可以省?是不是不必要?但是我當下就明白,每一個展場的東西,無論是人或非人的布置也好,對每一個行動者都會造成影響的,即便是一個眼神,或是一個理念,都會讓這個行動長的不一樣,這些外溢的校果,是不可預期的驚喜。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這個計畫讓我知道,無論你是哪個角色,身份高低,都會被參與的人感動,也會覺得我們作為公部門,應該還可以再做些甚麼。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我更相信,任何年輕人,即便小小的點、小小的想法,可能有點大膽、有點天馬行空,過去即便沒有看過的案子,感覺起來不可能發生,我都要給他們機會,讓他們可以萌芽,迴響也影響我,會去鼓勵每一個人,如果他們來到我面前,告訴我一個想法,我也都會盡能力所及,鼓勵大家去試試看。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n
\n
\n ⋯⋯
\n
\n
\n (古壁畫的某一段落,紀錄著這段話⋯⋯)
\n
\n
\n 每一年執行團隊都會打趣的問彼此這個問題「如果明年還有迴響,你還會回來嗎?為什麼?」
\n 直到今年,因為某些因素,可能沒有辦法這麼樂觀的預期,明年還是理所當然的會有迴響。
我們十個人相約,在八月的尾聲一起去一趟恆春旅行,像是在為迴響的這段旅行劃下終點,走到最難的地方,走到最南的地方說再見。
\n 一天晚上在鈕釦倉庫喝酒,因為臨時的大雨,躲到樹屋裡的一個小房間裡,原先只能容下兩個人的空間,一下子塞了九個人,在有限的空間裡,必須貼緊彼此的感覺,是關於執行團隊日常的一種隱喻。
\n 雨停了出來走走,大街上說著笑著又下起了大雨,前面的人開始跑了起來,後面的不知道為什麼也跟著跑了,按著包包的君芃一邊快走一邊說「其實我有帶傘」。索性就不拿出來了。遇到大雨的時候,就算自己有傘,倘若撐不起所有人的天空,有傘的人也會跟著淋雨,與其說是社會規範、潛規則,我會想把他看成迴響的浪漫。
\n 一時一刻,覺得自己和這些人的命運相連,哪裡有狹窄的出口,也不願獨自走出去,寧可相信我們這麼多人,要能對世上的堅硬,不苟且的鑿出一個洞來。
\n 其實是不需要淋雨的,跑過了幾條街,幾分鐘過去,雨也就停了。冷靜下來的時候想,其實是不需要淋雨的,但如果可以盡情的跑,為什麼不呢?日常裡想取巧的時刻,是放下渴望的時刻,自我會慢慢和現實妥協,於是不方便的事,反而讓我們更能辨認出彼此。下雨的時候也可以說跑就跑,雨停後才到 7-11 躲雨,在很飽的時候買啤酒和零食,想像這個夜晚,有二十四個小時。
\n 這個計畫雖然限制很多,在這個計畫中旅行的我們,一直試著回應自己的心,於是某種程度上,也是自由的。
\n 到底誰會先說再見?我知道我一定哭泣,走的時候記得說愛我。
\n
\n
\n ⋯⋯
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./giant-room-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./giant-room-6.vue?vue&type=template&id=3ffd079a&\"\nimport script from \"./giant-room-6.vue?vue&type=script&lang=js&\"\nexport * from \"./giant-room-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'giant_room_6'}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"(古壁畫的某一段落,紀錄著這段話⋯⋯)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"每一年執行團隊都會打趣的問彼此這個問題「如果明年還有迴響,你還會回來嗎?為什麼?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"直到今年,因為某些因素,可能沒有辦法這麼樂觀的預期,明年還是理所當然的會有迴響。\"),_c('br'),_vm._v(\"我們十個人相約,在八月的尾聲一起去一趟恆春旅行,像是在為迴響的這段旅行劃下終點,走到最難的地方,走到最南的地方說再見。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一天晚上在鈕釦倉庫喝酒,因為臨時的大雨,躲到樹屋裡的一個小房間裡,原先只能容下兩個人的空間,一下子塞了九個人,在有限的空間裡,必須貼緊彼此的感覺,是關於執行團隊日常的一種隱喻。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"雨停了出來走走,大街上說著笑著又下起了大雨,前面的人開始跑了起來,後面的不知道為什麼也跟著跑了,按著包包的君芃一邊快走一邊說「其實我有帶傘」。索性就不拿出來了。遇到大雨的時候,就算自己有傘,倘若撐不起所有人的天空,有傘的人也會跟著淋雨,與其說是社會規範、潛規則,我會想把他看成迴響的浪漫。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一時一刻,覺得自己和這些人的命運相連,哪裡有狹窄的出口,也不願獨自走出去,寧可相信我們這麼多人,要能對世上的堅硬,不苟且的鑿出一個洞來。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"其實是不需要淋雨的,跑過了幾條街,幾分鐘過去,雨也就停了。冷靜下來的時候想,其實是不需要淋雨的,但如果可以盡情的跑,為什麼不呢?日常裡想取巧的時刻,是放下渴望的時刻,自我會慢慢和現實妥協,於是不方便的事,反而讓我們更能辨認出彼此。下雨的時候也可以說跑就跑,雨停後才到 7-11 躲雨,在很飽的時候買啤酒和零食,想像這個夜晚,有二十四個小時。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這個計畫雖然限制很多,在這個計畫中旅行的我們,一直試著回應自己的心,於是某種程度上,也是自由的。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"到底誰會先說再見?我知道我一定哭泣,走的時候記得說愛我。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',{staticClass:\"t-center\"},[_vm._v(\"⋯⋯\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 登頂步道:跟隨迴響的足跡
\n 無論你是第一次認識迴響,還是老夥伴,在你選擇一條想前行的路後,邊探索、邊重新思考:「在行動路上,我真正需要的是什麼?」
\n 觀展心態
\n 迴響鼓勵行動,也支持「反思後,暫停」的決定。往往初步行動皆迎來許多挑戰、甚至失敗,若直接放棄、或一意孤行,都是非常可惜的事;接下來該你體驗,當你踏入迴響山頭,面臨諸多選擇時,一路上豐富的資源,會駐足?還是路過?一切依你為主。
\n 一探所有
\n 迴響相信,「真實的行動,是最純粹的感動」,而我們始終先打頭陣、創造藉口,從活動的儀式設計、別出心裁的紀念物、廣邀多元領域的行動夥伴與先行者,讓每一屆與會者,看見我們實驗的全貌-上述這些不為人知的時刻,在下一個路口,等你體會。
\n 不妨試試
\n 當你沉浸在迴響的感動時刻,記得也要繼續走,直到迴響世界的頂峰。是的,任何一條路,都會穿越雲海與森林,到達那至高點時,可以閉上眼睛,跟著遙想 10 年後的台灣,還有內心深處的真實叩問。不妨試試,留下你在此的證明,成為世界的行動者。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-intro-route.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-intro-route.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s1-intro-route.vue?vue&type=template&id=25635ec4&\"\nimport script from \"./s1-intro-route.vue?vue&type=script&lang=js&\"\nexport * from \"./s1-intro-route.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s1_intro_route',\"isWhite\":true}},[_c('h3',[_vm._v(\"登頂步道:跟隨迴響的足跡\")]),_vm._v(\" \"),_c('p',[_vm._v(\"無論你是第一次認識迴響,還是老夥伴,在你選擇一條想前行的路後,邊探索、邊重新思考:「在行動路上,我真正需要的是什麼?」\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"觀展心態\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響鼓勵行動,也支持「反思後,暫停」的決定。往往初步行動皆迎來許多挑戰、甚至失敗,若直接放棄、或一意孤行,都是非常可惜的事;接下來該你體驗,當你踏入迴響山頭,面臨諸多選擇時,一路上豐富的資源,會駐足?還是路過?一切依你為主。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"一探所有\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信,「真實的行動,是最純粹的感動」,而我們始終先打頭陣、創造藉口,從活動的儀式設計、別出心裁的紀念物、廣邀多元領域的行動夥伴與先行者,讓每一屆與會者,看見我們實驗的全貌-上述這些不為人知的時刻,在下一個路口,等你體會。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"不妨試試\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當你沉浸在迴響的感動時刻,記得也要繼續走,直到迴響世界的頂峰。是的,任何一條路,都會穿越雲海與森林,到達那至高點時,可以閉上眼睛,跟著遙想 10 年後的台灣,還有內心深處的真實叩問。不妨試試,留下你在此的證明,成為世界的行動者。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 「我們如何能鼓勵更多年輕人為自己在乎的事情採取行動?」
\n 這裡記載了迴響從 2017 年開始,每年重要的一些決定或里程碑。
\n 每年,我們也是行動中的團隊,持續嘗試計畫的不同可能性。有些成功的部分會連續出現在好幾屆,也有不少嘗試,隨著時間消失或調整。
\n 若你也在舉辦有點相似性的計畫、社群、或者單純好奇這些亮點的前後脈絡、效果,歡迎聯絡我們聊聊具體的經驗。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-intro-stone.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-intro-stone.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s1-intro-stone.vue?vue&type=template&id=3aa7d313&\"\nimport script from \"./s1-intro-stone.vue?vue&type=script&lang=js&\"\nexport * from \"./s1-intro-stone.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s1_intro_stone',\"isWhite\":true}},[_c('h4',[_vm._v(\"「我們如何能鼓勵更多年輕人為自己在乎的事情採取行動?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這裡記載了迴響從 2017 年開始,每年重要的一些決定或里程碑。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每年,我們也是行動中的團隊,持續嘗試計畫的不同可能性。有些成功的部分會連續出現在好幾屆,也有不少嘗試,隨著時間消失或調整。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"若你也在舉辦有點相似性的計畫、社群、或者單純好奇這些亮點的前後脈絡、效果,歡迎聯絡我們聊聊具體的經驗。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 新的名字有新的力量
\n 行動夥伴顧名思義,就是我們的夥伴,是執行團隊的夥伴,在初期幫忙力推這個計畫,也是每一屆青年團隊的夥伴,陪伴團隊度過第一步行動的卡關點。
\n 計畫創立初期,在討論如何支持青年的行動時,不免俗的參考了其他計畫,帶入了「業師」的角色,只是怎麼想都不太對勁,因為太被動了。
\n 我們成長的教育環境,「老師」往往被視為一個給予解答、能解決問題的角色,有問題要先請教老師才能動作。於是為了跳脫刻板印象,迴響用「行動夥伴」稱呼這些一般計畫設定為業師的角色。
\n 進一步就能重新思考,如果我們是在為青年團隊尋找給力的夥伴...
\n
\n
\n 「以行動為中心」的陪伴模式
\n 許多人會好奇,業師與行動夥伴的差別是什麼?其實這個問題把我們丟進了傳統業師諮詢的框架,那是假設「有經驗的人比較知道該怎麼做,因此可以藉由傳授或對談的方式,給予沒有經驗的人指導,幫助他們達成目標。」
\n 迴響計畫以促成青年行動為中心,如果我們從「如何讓行動更容易發生」、「讓行動的結果更有效益」的角度重新思考「有經驗的人如何陪伴青年」這件事,自然而然會做出不同的決定:
\n
\n 建立同理的基礎
\n 迴響計畫的行動夥伴多是創業 3-5 年內的創業者或組織創辦人,能珍惜第一步行動的價值,因此比起直接給予答案,他們比較偏向提出問題,幫助青年釐清行動的盲點。
\n 他們能深深體會跨出第一步的掙扎和矛盾,所掌握的資源也有限,在引導下一步行動時,不會提出其實青年明顯做不到的建議。他們不像業師,比較像事業剛做大,但還願意回來吃家聚的系上學長姐,陪你度過那些搖擺不定、偶遇成就的時刻。
\n
\n 建立平等的交流關係
\n 夥伴的年齡多半與青年提案者相仿,除了能交流的話題變多,比較容易建立「諮詢」以外的連結外,因為無須豎立為人師的角色身份,溝通上也比較直來直往。
\n 一般業師諮詢常常受限於時間、拘於禮貌,業師可能只能粗淺的瞭解計畫後,就要給出有道理的回饋,而團隊為了取得業師的認同,會講太多其實還不成熟的解決方案,卻鮮少真的溝通遇到的問題,結果常常「業師金玉良言,全是自己經驗」與青年得議題對不上。
\n
\n 創造互惠的連結
\n 行動夥伴所處的組織大多都在發展初期,他們的「行動方案」雖然趨於成熟,但仍會謹慎思考資源的運用,多半都期待能借力使力,尋找各種創造價值的機會。
\n 青年的行動有時會和夥伴的事業互補,在夥伴的空間中辦理活動,也幫助夥伴觸及到新的客群,第二屆投入書寫療癒的 Date Myself 就曾與玖樓合作,在共居空間辦理書寫活動;青年處理的議題,有時是夥伴注意到卻無力投入的面向,由夥伴協助重構議題,幫助青年思考如何連結不同的資源。
\n 此外,看到這些青年熱血投入行動,許多夥伴回饋這讓自己想起了當年創業時的模樣,獲得了新的能量,也想格外用力的「照顧」這些新起的小老弟們,看見他們的成長。
\n
\n
\n 「以行動為中心」的合作模式
\n 最後,行動夥伴也是執行團隊的夥伴,迴響創立初期,為了找到將想法化為行動的關鍵,我們在一個月內完成了15場以上的採訪,從中整理出數十萬字的逐字稿,一邊抽絲剝繭,一邊將學習轉化為迴響的行動迴圈。
\n 行動夥伴們與執行團隊的年紀也相仿,在大型活動出席、評審過程的溝通中,我們偶爾也會吵架,這些衝突和火花,幫助我們持續滾動修正,我們的機制、評選標準是否真得有:「幫助青年採取行動」、「協助青年在行動的過程獲得學習」、「幫助青年以他們的行動連結到更多資源,看見更大的世界」
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-partners.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-partners.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s1-partners.vue?vue&type=template&id=294873ee&\"\nimport script from \"./s1-partners.vue?vue&type=script&lang=js&\"\nexport * from \"./s1-partners.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s1_partners',\"isWhite\":true}},[_c('h3',[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"新的名字有新的力量\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動夥伴顧名思義,就是我們的夥伴,是執行團隊的夥伴,在初期幫忙力推這個計畫,也是每一屆青年團隊的夥伴,陪伴團隊度過第一步行動的卡關點。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"計畫創立初期,在討論如何支持青年的行動時,不免俗的參考了其他計畫,帶入了「業師」的角色,只是怎麼想都不太對勁,因為太被動了。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們成長的教育環境,「老師」往往被視為一個給予解答、能解決問題的角色,有問題要先請教老師才能動作。於是為了跳脫刻板印象,迴響用「行動夥伴」稱呼這些一般計畫設定為業師的角色。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"進一步就能重新思考,如果我們是在為青年團隊尋找給力的夥伴...\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"「以行動為中心」的陪伴模式\")]),_vm._v(\" \"),_c('p',[_vm._v(\"許多人會好奇,業師與行動夥伴的差別是什麼?其實這個問題把我們丟進了傳統業師諮詢的框架,那是假設「有經驗的人比較知道該怎麼做,因此可以藉由傳授或對談的方式,給予沒有經驗的人指導,幫助他們達成目標。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響計畫以促成青年行動為中心,如果我們從「如何讓行動更容易發生」、「讓行動的結果更有效益」的角度重新思考「有經驗的人如何陪伴青年」這件事,自然而然會做出不同的決定:\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"建立同理的基礎\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響計畫的行動夥伴多是創業 3-5 年內的創業者或組織創辦人,能珍惜第一步行動的價值,因此比起直接給予答案,他們比較偏向提出問題,幫助青年釐清行動的盲點。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"他們能深深體會跨出第一步的掙扎和矛盾,所掌握的資源也有限,在引導下一步行動時,不會提出其實青年明顯做不到的建議。他們不像業師,比較像事業剛做大,但還願意回來吃家聚的系上學長姐,陪你度過那些搖擺不定、偶遇成就的時刻。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_c('b',[_vm._v(\"建立平等的交流關係\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"夥伴的年齡多半與青年提案者相仿,除了能交流的話題變多,比較容易建立「諮詢」以外的連結外,因為無須豎立為人師的角色身份,溝通上也比較直來直往。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一般業師諮詢常常受限於時間、拘於禮貌,業師可能只能粗淺的瞭解計畫後,就要給出有道理的回饋,而團隊為了取得業師的認同,會講太多其實還不成熟的解決方案,卻鮮少真的溝通遇到的問題,結果常常「業師金玉良言,全是自己經驗」與青年得議題對不上。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_c('b',[_vm._v(\"創造互惠的連結\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"行動夥伴所處的組織大多都在發展初期,他們的「行動方案」雖然趨於成熟,但仍會謹慎思考資源的運用,多半都期待能借力使力,尋找各種創造價值的機會。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"青年的行動有時會和夥伴的事業互補,在夥伴的空間中辦理活動,也幫助夥伴觸及到新的客群,第二屆投入書寫療癒的 Date Myself 就曾與玖樓合作,在共居空間辦理書寫活動;青年處理的議題,有時是夥伴注意到卻無力投入的面向,由夥伴協助重構議題,幫助青年思考如何連結不同的資源。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"此外,看到這些青年熱血投入行動,許多夥伴回饋這讓自己想起了當年創業時的模樣,獲得了新的能量,也想格外用力的「照顧」這些新起的小老弟們,看見他們的成長。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"「以行動為中心」的合作模式\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最後,行動夥伴也是執行團隊的夥伴,迴響創立初期,為了找到將想法化為行動的關鍵,我們在一個月內完成了15場以上的採訪,從中整理出數十萬字的逐字稿,一邊抽絲剝繭,一邊將學習轉化為迴響的行動迴圈。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動夥伴們與執行團隊的年紀也相仿,在大型活動出席、評審過程的溝通中,我們偶爾也會吵架,這些衝突和火花,幫助我們持續滾動修正,我們的機制、評選標準是否真得有:「幫助青年採取行動」、「協助青年在行動的過程獲得學習」、「幫助青年以他們的行動連結到更多資源,看見更大的世界」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 2017,計畫開始的第一年,刻畫出最主要的模樣
\n 以「行動」為核心的孵化計畫:
\n 想要報名活動,不是填寫一個報名表等待錄取通知,迴響作為一個鼓勵行動的計畫,要報名了,就直接動起來吧!以任務包取代書面審查,直接試著做做看,最早完成的 40 組正式加入當年的迴響計畫。
\n 行動夥伴,一群也期待社會上有更多行動發生的人們:
\n 一群在社會創新領域 3-5 年的行動先行者。行動夥伴的意見不代表正解,而是陪著團隊一起找答案。
\n 三大精神,持續行動的基本信念
\n 第一年的行動工具沒有那麼完整,但我們相信有些信念可以指引著大家持續前進,直到目前,這些精神都還是繼續沿用著。
\n 協助青年行動的具體方法:
\n 第一年以設計思考、精實創業為基礎,指引了迴響計畫的不同階段,還取了口語化的「來吧!問題」、「去吧!行動」、「上吧!大夥」的名字。每年,我們也會依照實際的狀況持續的迭代行動的架構設計。
\n 以青年為本的實體活動:
\n 像是:大會師的入場 Read Me First 寫著:「今天沒有規定,沒有非如何不可的事情,所有你靈光一閃想到可以做的事情,都可以做,所有你不想做的事情,都可以不做。」
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-stone.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-stone.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-stone.vue?vue&type=template&id=7d6882b0&\"\nimport script from \"./y2017-stone.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-stone.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_stone',\"isWhite\":true}},[_c('h3',[_vm._v(\"2017,計畫開始的第一年,刻畫出最主要的模樣\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"以「行動」為核心的孵化計畫:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"想要報名活動,不是填寫一個報名表等待錄取通知,迴響作為一個鼓勵行動的計畫,要報名了,就直接動起來吧!以任務包取代書面審查,直接試著做做看,最早完成的 40 組正式加入當年的迴響計畫。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"行動夥伴,一群也期待社會上有更多行動發生的人們:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一群在社會創新領域 3-5 年的行動先行者。行動夥伴的意見不代表正解,而是陪著團隊一起找答案。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"三大精神,持續行動的基本信念\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第一年的行動工具沒有那麼完整,但我們相信有些信念可以指引著大家持續前進,直到目前,這些精神都還是繼續沿用著。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"協助青年行動的具體方法:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第一年以設計思考、精實創業為基礎,指引了迴響計畫的不同階段,還取了口語化的「來吧!問題」、「去吧!行動」、「上吧!大夥」的名字。每年,我們也會依照實際的狀況持續的迭代行動的架構設計。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"以青年為本的實體活動:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"像是:大會師的入場 Read Me First 寫著:「今天沒有規定,沒有非如何不可的事情,所有你靈光一閃想到可以做的事情,都可以做,所有你不想做的事情,都可以不做。」\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 不只這些,不只這些,每一次大合照裡,都少了一部分的人......
\n 攝影師、其他活動籌辦夥伴、支持行動團隊的利害關係人、無緣進到大會師的青年們、所有青年署相關的工作夥伴們、先行離去的行動夥伴、行程滿滿的評審們
\n ......這樣連連看,總有一天會連到你吧。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-1.vue?vue&type=template&id=433c614b&\"\nimport script from \"./y2017-1.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_1',\"isWhite\":true}},[_c('p',[_vm._v(\"不只這些,不只這些,每一次大合照裡,都少了一部分的人...... \")]),_vm._v(\" \"),_c('p',[_vm._v(\"攝影師、其他活動籌辦夥伴、支持行動團隊的利害關係人、無緣進到大會師的青年們、所有青年署相關的工作夥伴們、先行離去的行動夥伴、行程滿滿的評審們\")]),_vm._v(\" \"),_c('p',[_vm._v(\"......這樣連連看,總有一天會連到你吧。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 你可知,每一位在照片裡出現的青年,他們的行動,都默默影響著身邊遇到的某一群人。
\n 就像 Swing Taiwan 的初衷,單純地想要分享快樂,行走至今,歡樂遍布多少?
\n 這就是行動的文化,隨時有動有靜,過程中創造新的可能,而好多人都在那個新的可能中,幸福地活出理想模樣。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-2.vue?vue&type=template&id=2502c52e&\"\nimport script from \"./y2017-2.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_2',\"isWhite\":true}},[_c('p',[_vm._v(\"你可知,每一位在照片裡出現的青年,他們的行動,都默默影響著身邊遇到的某一群人。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"就像 Swing Taiwan 的初衷,單純地想要分享快樂,行走至今,歡樂遍布多少?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這就是行動的文化,隨時有動有靜,過程中創造新的可能,而好多人都在那個新的可能中,幸福地活出理想模樣。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 讓所有人穿上同一款衣服,可以讓現場更有凝聚感。
\n 青年迴響的 T-shirt,應該要設計成什麼模樣?是代表社會議題的大享嗎?還是不斷出現的行動小人?是否要有迴響 LOGO 或標語?哪一句比較讓人印象深刻?
\n 這時間突然有人說:「為什麼我們不讓穿的人自己決定想要什麼圖樣?」
\n 那就絹印吧!買全素的衣服,讓青年在大會師 DIY,完成屬於自己的衣服!
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-3.vue?vue&type=template&id=1bcbff21&\"\nimport script from \"./y2017-3.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_3',\"isWhite\":true}},[_c('p',[_vm._v(\"讓所有人穿上同一款衣服,可以讓現場更有凝聚感。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"青年迴響的 T-shirt,應該要設計成什麼模樣?是代表社會議題的大享嗎?還是不斷出現的行動小人?是否要有迴響 LOGO 或標語?哪一句比較讓人印象深刻?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這時間突然有人說:「為什麼我們不讓穿的人自己決定想要什麼圖樣?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"那就絹印吧!買全素的衣服,讓青年在大會師 DIY,完成屬於自己的衣服!\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 從提問之後,透過任務包去採訪、認證,和別人談一談所帶來的觀念上的改變,比蒐集資料、擬定策略還要重要。
\n 當這些團隊改變行動的方案,是因為「原來,不只是如此...」、「原來,還有不同的聲音...」、「原來,眼前的困境,是因為另一個因素所造成的...」
\n 我們知道青年們學會了˙,願意傾聽他人、放下自己心中原本的假設與設定、接受新的觀點,「不由得感動得起雞皮疙瘩」Jarah 寫於《行動旅人求生筆記》。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-4.vue?vue&type=template&id=d628a5a8&\"\nimport script from \"./y2017-4.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_4',\"isWhite\":true}},[_c('p',[_vm._v(\"從提問之後,透過任務包去採訪、認證,和別人談一談所帶來的觀念上的改變,比蒐集資料、擬定策略還要重要。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當這些團隊改變行動的方案,是因為「原來,不只是如此...」、「原來,還有不同的聲音...」、「原來,眼前的困境,是因為另一個因素所造成的...」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們知道青年們學會了˙,願意傾聽他人、放下自己心中原本的假設與設定、接受新的觀點,「不由得感動得起雞皮疙瘩」Jarah 寫於《行動旅人求生筆記》。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 第一屆,就排了這樣的大合照。
\n 十年後,會是什麼模樣呢?
\n 或許,看到這裡,你可以想想十年前的自己,能想像現在的模樣嗎?
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-5.vue?vue&type=template&id=1ce2e9e7&\"\nimport script from \"./y2017-5.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_5',\"isWhite\":true}},[_c('p',[_vm._v(\"第一屆,就排了這樣的大合照。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"十年後,會是什麼模樣呢?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"或許,看到這裡,你可以想想十年前的自己,能想像現在的模樣嗎?\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 當人們一踏入迴響這個圈子後,好像就踏不出去了呢!
\n 中間那一位是藺子的創辦人怡雅,在她左手邊的兩位青年團隊,他們的題目和品牌是《浪犬博士》。
\n 看著這些照片,想著迴響也就是搭建了這樣的平台,讓行動者來、聚集、成為自己,然後出發走自己的路\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-6.vue?vue&type=template&id=35df4d2c&\"\nimport script from \"./y2017-6.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_6',\"isWhite\":true}},[_c('p',[_vm._v(\"當人們一踏入迴響這個圈子後,好像就踏不出去了呢!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"中間那一位是藺子的創辦人怡雅,在她左手邊的兩位青年團隊,他們的題目和品牌是《浪犬博士》。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"看著這些照片,想著迴響也就是搭建了這樣的平台,讓行動者來、聚集、成為自己,然後出發走自己的路\\n\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 嘿,第一群陪伴我們的行動夥伴。
\n 和青年保持一定的距離,在青年前行時,分享自己行動過程中的歷程,用著各自的方式進行交流。
\n 「為什麼這是你最想做的事呢?」
\n 「你從背後看見什麼時代訊息?」
\n 「用午餐的時間,一起聊聊看?」
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-7.vue?vue&type=template&id=2bcb26c2&\"\nimport script from \"./y2017-7.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_7',\"isWhite\":true}},[_c('p',[_vm._v(\"嘿,第一群陪伴我們的行動夥伴。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"和青年保持一定的距離,在青年前行時,分享自己行動過程中的歷程,用著各自的方式進行交流。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「為什麼這是你最想做的事呢?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「你從背後看見什麼時代訊息?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「用午餐的時間,一起聊聊看?」\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 在最後結尾的時候,應該要是個盛大的慶典,像是所有人都在為「行動」慶祝著。
\n 在迴響最後的這一個時刻,沒有所謂的輸贏,參觀的路人也是行動者,有一天所有人都會為了自己在意的事行動。
\n 而當行動者踏上自己的旅程時,他所散發的能量和決心,就像派對盛典一樣,吸引所有人的注意,並且決定一起投入試試。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2017-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2017-8.vue?vue&type=template&id=22eb6ace&\"\nimport script from \"./y2017-8.vue?vue&type=script&lang=js&\"\nexport * from \"./y2017-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2017_8',\"isWhite\":true}},[_c('p',[_vm._v(\"在最後結尾的時候,應該要是個盛大的慶典,像是所有人都在為「行動」慶祝著。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在迴響最後的這一個時刻,沒有所謂的輸贏,參觀的路人也是行動者,有一天所有人都會為了自己在意的事行動。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而當行動者踏上自己的旅程時,他所散發的能量和決心,就像派對盛典一樣,吸引所有人的注意,並且決定一起投入試試。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 2018 年,是所有東西都想要更好的一屆
\n 第一次的「再來一遍」,有許多東西想留下,也有許多東西想改變,我們仍然在摸索的路上:什麼才是最好的作法?
\n 確立迴響三大精神
\n 從「指引性」的考量出發,把精神之一從「行動從不簡單,但會很值得」修正為「將失敗化為學習的機會」,到 2021 年為止都沒有再改動,你可以在迴響的各式文案、活動設計找到這些概念。
\n 更盛大的行動節,同時也模糊了部分行動團隊的目標
\n 從原本僅有最終 10 組團隊參與行動節,這屆迴響讓 30 組團隊通通參展了,找了華山紅酒廠的大型場地,讓足夠多的團隊與社會有更多元的對話
\n 對於行動團隊來說,的確促成很多與大眾的對話,但因為團隊的議題、行動階段多元,不是所有團隊在此刻都最需要曝光,對這種團隊,最終發表會與行動節變成分散心力的的兩個目標,影響動能。
\n 第一次做迴響研究,模糊地從模糊中找線索
\n 計畫結束後的半年,第一次停下腳步,試著了解「迴響計畫到底做對什麼」,從研究中,發現「行動工具」的使用,會影響團隊與教練間溝通的聚焦程度,影響下一屆開發迴圈工具包的基礎。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-stone.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-stone.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-stone.vue?vue&type=template&id=3aa9bc1b&\"\nimport script from \"./y2018-stone.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-stone.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_stone'}},[_c('h3',[_vm._v(\"2018 年,是所有東西都想要更好的一屆\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第一次的「再來一遍」,有許多東西想留下,也有許多東西想改變,我們仍然在摸索的路上:什麼才是最好的作法?\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"確立迴響三大精神\")]),_vm._v(\" \"),_c('p',[_vm._v(\"從「指引性」的考量出發,把精神之一從「行動從不簡單,但會很值得」修正為「將失敗化為學習的機會」,到 2021 年為止都沒有再改動,你可以在迴響的各式文案、活動設計找到這些概念。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"更盛大的行動節,同時也模糊了部分行動團隊的目標\")]),_vm._v(\" \"),_c('p',[_vm._v(\"從原本僅有最終 10 組團隊參與行動節,這屆迴響讓 30 組團隊通通參展了,找了華山紅酒廠的大型場地,讓足夠多的團隊與社會有更多元的對話\")]),_vm._v(\" \"),_c('p',[_vm._v(\"對於行動團隊來說,的確促成很多與大眾的對話,但因為團隊的議題、行動階段多元,不是所有團隊在此刻都最需要曝光,對這種團隊,最終發表會與行動節變成分散心力的的兩個目標,影響動能。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"第一次做迴響研究,模糊地從模糊中找線索\")]),_vm._v(\" \"),_c('p',[_vm._v(\"計畫結束後的半年,第一次停下腳步,試著了解「迴響計畫到底做對什麼」,從研究中,發現「行動工具」的使用,會影響團隊與教練間溝通的聚焦程度,影響下一屆開發迴圈工具包的基礎。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 大會師的現場,就是讓青年團隊不間斷在做「自我介紹」的時刻。
\n 在迴響計畫,青年會逐步地拉近自己和社會的距離,慢慢去建構行動和世界的關係,而我們是誰?我們要處理什麼題目?我們嘗試什麼解決方法?我碰到什麼難題?
\n 當每一次表達自己為何出發,要去向哪裡時,眼下的路,就會逐漸清晰。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-1.vue?vue&type=template&id=5530866e&\"\nimport script from \"./y2018-1.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_1'}},[_c('p',[_vm._v(\"大會師的現場,就是讓青年團隊不間斷在做「自我介紹」的時刻。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在迴響計畫,青年會逐步地拉近自己和社會的距離,慢慢去建構行動和世界的關係,而我們是誰?我們要處理什麼題目?我們嘗試什麼解決方法?我碰到什麼難題?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當每一次表達自己為何出發,要去向哪裡時,眼下的路,就會逐漸清晰。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 迴響的活動,總是會有 Read Me First,那是因為我們往往無法確定,每一位讀者如何理解即將發生的事?他吸收了多少的前情提要?
\n 「能夠掌握多一點點資訊,人會更有信心、更有安全感一些些。」
\n 迴響從來就不是一個容易理解的地方,因為外面的世界,和迴響有點不同,這裡你會被完全地鼓勵行動、被持續拷問反思的結果、無法直接收到下一步的指示,「以你為中心,真的什麼都可以」,你會怎麼行動?
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-2.vue?vue&type=template&id=61ce95b5&\"\nimport script from \"./y2018-2.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_2'}},[_c('p',[_vm._v(\"迴響的活動,總是會有 Read Me First,那是因為我們往往無法確定,每一位讀者如何理解即將發生的事?他吸收了多少的前情提要? \")]),_vm._v(\" \"),_c('p',[_vm._v(\"「能夠掌握多一點點資訊,人會更有信心、更有安全感一些些。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響從來就不是一個容易理解的地方,因為外面的世界,和迴響有點不同,這裡你會被完全地鼓勵行動、被持續拷問反思的結果、無法直接收到下一步的指示,「以你為中心,真的什麼都可以」,你會怎麼行動?\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 絹印的概念,不,或是說,「一人一件擁有自己獨一無二的衣服」的信念,就這樣被流傳下來。
\n 動手做的過程,總是印象深刻,永遠都是新的體驗,甚至讓離開學校很久的 30 世代青年,也有眼睛一亮的時刻。
\n 「創造」是會讓人幸福的,而任何一個微小的舉動,都能為自己的生活帶來不一樣的感動。
\n (雖然還是要一邊教學、洗絹網、圖顏料、用刮板...)
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-3.vue?vue&type=template&id=d979fc34&\"\nimport script from \"./y2018-3.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_3'}},[_c('p',[_vm._v(\"絹印的概念,不,或是說,「一人一件擁有自己獨一無二的衣服」的信念,就這樣被流傳下來。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"動手做的過程,總是印象深刻,永遠都是新的體驗,甚至讓離開學校很久的 30 世代青年,也有眼睛一亮的時刻。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「創造」是會讓人幸福的,而任何一個微小的舉動,都能為自己的生活帶來不一樣的感動。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"(雖然還是要一邊教學、洗絹網、圖顏料、用刮板...)\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 休息,充電,反思,也是行動重要的一環。
\n 第二屆也更想凸顯這一件事,因此在活動的過程還有空間上,有幸有機會,讓夥伴們具象化日本和室的空間,也邀請了瑜珈老師到現場,讓青年團隊可以放鬆、舒展一下。
\n 有時候執行團隊,真的是一群不會放過自己的人,克服挑戰、限制,把真正想呈現、表達的事,盡力做到完整,為的就是那一刻的感受。
\n \n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-4.vue?vue&type=template&id=23f4fdc6&\"\nimport script from \"./y2018-4.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_4'}},[_c('p',[_vm._v(\"休息,充電,反思,也是行動重要的一環。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第二屆也更想凸顯這一件事,因此在活動的過程還有空間上,有幸有機會,讓夥伴們具象化日本和室的空間,也邀請了瑜珈老師到現場,讓青年團隊可以放鬆、舒展一下。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"有時候執行團隊,真的是一群不會放過自己的人,克服挑戰、限制,把真正想呈現、表達的事,盡力做到完整,為的就是那一刻的感受。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 完成任務包,經過評選後進入到大會師的組別,每一組都有設計思考教練的陪伴。
\n 青年會在什麼時候找迴響教練呢?
\n ...不知道怎麼開會、和夥伴吵架沒有共識的時候;下一次的行動要實驗的目標有點模糊的時候;想做的事情好像超乎能力、卻又想挑戰自己的時候...
\n 在三個月的時間裡,和教練聊聊的過程中,似乎也就在某些青年的行為模式裡,養成了許多新的思考方法,打破習慣,往不曾想過的地方試試。
\n \n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-5.vue?vue&type=template&id=5fb79c7b&\"\nimport script from \"./y2018-5.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_5'}},[_c('p',[_vm._v(\"完成任務包,經過評選後進入到大會師的組別,每一組都有設計思考教練的陪伴。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"青年會在什麼時候找迴響教練呢?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"...不知道怎麼開會、和夥伴吵架沒有共識的時候;下一次的行動要實驗的目標有點模糊的時候;想做的事情好像超乎能力、卻又想挑戰自己的時候...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在三個月的時間裡,和教練聊聊的過程中,似乎也就在某些青年的行為模式裡,養成了許多新的思考方法,打破習慣,往不曾想過的地方試試。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 又見面了,行動夥伴們。
\n 是這一屆的時候,
\n 王維綱說:「創業只有兩步路,這一步和下一步」;
\n \n Pin 李品汶每一次都會分享她的信仰:「Be the change you want to see in the world」;
\n \n 而好久不見的楊宇綸,誠懇地分享自己如何突破關卡,走進人群述說與倡議;
\n \n 至於阿德啊...不知道是不是這個時候說到:「反正你做不喜歡的事也很痛苦,幹嘛不就做喜歡的事,也是痛苦,至少你喜歡?」
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-6.vue?vue&type=template&id=77b8869f&\"\nimport script from \"./y2018-6.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_6'}},[_c('p',[_vm._v(\"又見面了,行動夥伴們。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"是這一屆的時候,\")]),_vm._v(\" \"),_c('p',[_vm._v(\"王維綱說:「創業只有兩步路,這一步和下一步」;\")]),_vm._v(\" \"),_c('p',[_vm._v(\"Pin 李品汶每一次都會分享她的信仰:「Be the change you want to see in the world」;\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而好久不見的楊宇綸,誠懇地分享自己如何突破關卡,走進人群述說與倡議;\")]),_vm._v(\" \"),_c('p',[_vm._v(\"至於阿德啊...不知道是不是這個時候說到:「反正你做不喜歡的事也很痛苦,幹嘛不就做喜歡的事,也是痛苦,至少你喜歡?」\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 第二屆的行動節,是規模最大的一屆,不知道下一次還有行動節的時候,會長成什麼模樣?
\n 每一組團隊,都有設計師韋呈的心意,為團隊的議題畫下相符合的插畫搭配,這除了是要了解議題以外,更是花了無數的時間在構思。
\n 在華山的展場裡,每一個團隊使用被分配到的區塊,去展現兩個月的成果,有靜態展、有互動體驗、有商品販售、有分享新知。
\n 熱鬧喧嘩,看見了社會上某一小部分的行動縮影,光是如此,就覺得激勵人心。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-7.vue?vue&type=template&id=3718d18a&\"\nimport script from \"./y2018-7.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_7'}},[_c('p',[_vm._v(\"第二屆的行動節,是規模最大的一屆,不知道下一次還有行動節的時候,會長成什麼模樣?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每一組團隊,都有設計師韋呈的心意,為團隊的議題畫下相符合的插畫搭配,這除了是要了解議題以外,更是花了無數的時間在構思。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在華山的展場裡,每一個團隊使用被分配到的區塊,去展現兩個月的成果,有靜態展、有互動體驗、有商品販售、有分享新知。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"熱鬧喧嘩,看見了社會上某一小部分的行動縮影,光是如此,就覺得激勵人心。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 「帶走一顆屬於你的行星。」
\n 這是專屬於迴響的浪漫吧。
\n 迴響創造了行動的城市,也創了行動的星系,然後用我們的語彙,想告訴青年:「嘿,你可能找不到怎麼描述自己的定位和價值,但那或許只是因為目前台灣社會,還沒有符合你的體系而已啦。」
\n 送青年一顆星球,點亮心中的光火,沒想到,其中一位青年的媽媽,拿著迴響的星球徽章說:「喏,給妳的,好好玩吧。」
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2018-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2018-8.vue?vue&type=template&id=7ba6b441&\"\nimport script from \"./y2018-8.vue?vue&type=script&lang=js&\"\nexport * from \"./y2018-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2018_8'}},[_c('p',[_vm._v(\"「帶走一顆屬於你的行星。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這是專屬於迴響的浪漫吧。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響創造了行動的城市,也創了行動的星系,然後用我們的語彙,想告訴青年:「嘿,你可能找不到怎麼描述自己的定位和價值,但那或許只是因為目前台灣社會,還沒有符合你的體系而已啦。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"送青年一顆星球,點亮心中的光火,沒想到,其中一位青年的媽媽,拿著迴響的星球徽章說:「喏,給妳的,好好玩吧。」\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 2019 年,是取捨的一屆
\n 這年,計畫的預算相比過去下降許多,我們在有限的資源下,要很努力的看到真正核心的東西是什麼。當然,得知消息的當下有很多的失望與挫折,但回顧起來,卻是協助我們踩穩的一年。
\n 製作任務包線上課程,讓行動知識更好吸收:
\n 把任務包的核心知識錄製成線上課程,讓過往都是文字的行動知識教學,可以有多種吸收方式。
\n 隔年再推了一把,把任務包公開化。
\n 沒有獎金的 Pitch Day,反而聚焦回行動者當下的真正狀態與需求:
\n 沒有獎金預算的 Pitch ,反而讓我們更仔細的思考團隊的需求,將團隊分成三種類型,因此讓團隊與評審更適切的互動,直接給予同理、建議、鼓勵或是一些非金錢但重要的行動資源。
\n 開發迴圈工具包,讓行動迴圈「可行」:
\n 當年把概念性的行動迴圈對應的工具都開發出來,還做了一個工具網站的雛形,協助團隊每次討論、行動,都可以有清楚的目標。
\n 第一次迴響同學會:
\n 半開玩笑的在最後一場活動抽籤兩組團隊,實際上真的發生囉!讀到這裡的迴響校友,要不要一起舉辦下一場啊?
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-stone.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-stone.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-stone.vue?vue&type=template&id=e929a21a&\"\nimport script from \"./y2019-stone.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-stone.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_stone',\"isWhite\":true}},[_c('h3',[_vm._v(\"2019 年,是取捨的一屆\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這年,計畫的預算相比過去下降許多,我們在有限的資源下,要很努力的看到真正核心的東西是什麼。當然,得知消息的當下有很多的失望與挫折,但回顧起來,卻是協助我們踩穩的一年。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"製作任務包線上課程,讓行動知識更好吸收:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"把任務包的核心知識錄製成線上課程,讓過往都是文字的行動知識教學,可以有多種吸收方式。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"隔年再推了一把,把任務包公開化。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"沒有獎金的 Pitch Day,反而聚焦回行動者當下的真正狀態與需求:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"沒有獎金預算的 Pitch ,反而讓我們更仔細的思考團隊的需求,將團隊分成三種類型,因此讓團隊與評審更適切的互動,直接給予同理、建議、鼓勵或是一些非金錢但重要的行動資源。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"開發迴圈工具包,讓行動迴圈「可行」:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當年把概念性的行動迴圈對應的工具都開發出來,還做了一個\"),_c('a',{attrs:{\"href\":\"https://rethinktaiwan2027.wixsite.com/rethinktaiwantool\",\"target\":\"_blank\"}},[_vm._v(\"工具網站\")]),_vm._v(\"的雛形,協助團隊每次討論、行動,都可以有清楚的目標。 \")]),_vm._v(\" \"),_c('h4',[_vm._v(\"第一次迴響同學會:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"半開玩笑的在最後一場活動抽籤兩組團隊,實際上真的發生囉!讀到這裡的迴響校友,要不要一起舉辦下一場啊?\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 「好的,那就開始吧。」
\n 第三屆的挑戰,或許你可以看看品牌紀元,了解前後脈絡。
\n 在所有活動都有些限縮的條件下,迴響在第三屆時,開始思考「鼓勵行動」最根基的要件,到底有哪些呢?
\n 精簡的行動,該具焦在何處?
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-1.vue?vue&type=template&id=1275aa2b&\"\nimport script from \"./y2019-1.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_1',\"isWhite\":true}},[_c('p',[_vm._v(\"「好的,那就開始吧。」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第三屆的挑戰,或許你可以看看品牌紀元,了解前後脈絡。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在所有活動都有些限縮的條件下,迴響在第三屆時,開始思考「鼓勵行動」最根基的要件,到底有哪些呢?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"精簡的行動,該具焦在何處?\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 說明會的場次,沒有辦法想前兩屆一樣到處跑跳,但是第三屆又想要突破迴響的受眾,希望可以接觸到更廣泛的年齡層。
\n 不只是在學學子,在上班族的青年,也是我們希望可以擾動的對象;想處理的議題,也不一定要是社會創新範疇所流行的環保議題,而可能是更接近自己生命、來自生活底層的議題,從最深刻的事出發,再困難也會找到一個開頭。
\n 今年開始邀請青年團隊,一同分享行動的歷程,向外回饋給更多群眾。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-2.vue?vue&type=template&id=2feb76ba&\"\nimport script from \"./y2019-2.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_2',\"isWhite\":true}},[_c('p',[_vm._v(\"說明會的場次,沒有辦法想前兩屆一樣到處跑跳,但是第三屆又想要突破迴響的受眾,希望可以接觸到更廣泛的年齡層。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不只是在學學子,在上班族的青年,也是我們希望可以擾動的對象;想處理的議題,也不一定要是社會創新範疇所流行的環保議題,而可能是更接近自己生命、來自生活底層的議題,從最深刻的事出發,再困難也會找到一個開頭。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"今年開始邀請青年團隊,一同分享行動的歷程,向外回饋給更多群眾。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 終於,也在這一屆,完成了《行動旅人求生筆記》,是的,不是指南,就是我們的筆記。
\n 所有一開始的自我辯證,想要堅持的局面,接受到的幫助,得到業界評審獨特的支持和鼓舞。
\n 一群人一起踩出了一個起頭,待後人持續開挖自己的道路。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-3.vue?vue&type=template&id=5d949b34&\"\nimport script from \"./y2019-3.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_3',\"isWhite\":true}},[_c('p',[_vm._v(\"終於,也在這一屆,完成了《行動旅人求生筆記》,是的,不是指南,就是我們的筆記。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"所有一開始的自我辯證,想要堅持的局面,接受到的幫助,得到業界評審獨特的支持和鼓舞。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一群人一起踩出了一個起頭,待後人持續開挖自己的道路。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 和青年署的合作,每一年都能從過程中學習,也透過無數次來回的溝通、共創,也才更加明白,要從制度層次去推廣實驗性質的提案,需要做到真正站在彼此的立場,去同理彼此的處境。
\n 這一路走來,感謝在第四屆時,能有機會整理這過往的突破。
\n 不只是青年在行動呢!我們和公部門的夥伴,也一直在推動更多的可能,讓「行動精神」蔓延、轉化許多合作夥伴的 DNA!
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-4.vue?vue&type=template&id=fc798548&\"\nimport script from \"./y2019-4.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_4',\"isWhite\":true}},[_c('p',[_vm._v(\"和青年署的合作,每一年都能從過程中學習,也透過無數次來回的溝通、共創,也才更加明白,要從制度層次去推廣實驗性質的提案,需要做到真正站在彼此的立場,去同理彼此的處境。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這一路走來,感謝在第四屆時,能有機會整理這過往的突破。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不只是青年在行動呢!我們和公部門的夥伴,也一直在推動更多的可能,讓「行動精神」蔓延、轉化許多合作夥伴的 DNA!\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 這一踢,陪伴我們好多次社群發文的時刻。
\n 喔,這兩位在前兩屆是志工、是教練呢,當她們終於準備好的時候,也來開啟了自己的行動,成為第三屆的行動團隊!
\n 迴響的資源,等著被各位使用,只要你隨時準備好,就用你喜歡的方式和角色,獲取你要的支持吧。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-5.vue?vue&type=template&id=34028f10&\"\nimport script from \"./y2019-5.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_5',\"isWhite\":true}},[_c('p',[_vm._v(\"這一踢,陪伴我們好多次社群發文的時刻。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"喔,這兩位在前兩屆是志工、是教練呢,當她們終於準備好的時候,也來開啟了自己的行動,成為第三屆的行動團隊!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的資源,等著被各位使用,只要你隨時準備好,就用你喜歡的方式和角色,獲取你要的支持吧。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 無論在哪裡,加入迴響,就會有教練們支持行動團隊!
\n 每一位教練,也都跟著團隊在學習,不只是認識台灣青年現在關注的議題,也從帶領團隊的過程中,增強自己如何和不同類型的行動者溝通的技巧,看看自己如何以協助者的角度去推動團隊的對話。
\n 這是一個行動者的大學校,所有人都一起成長進步。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-6.vue?vue&type=template&id=5ed11faf&\"\nimport script from \"./y2019-6.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_6',\"isWhite\":true}},[_c('p',[_vm._v(\"無論在哪裡,加入迴響,就會有教練們支持行動團隊!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每一位教練,也都跟著團隊在學習,不只是認識台灣青年現在關注的議題,也從帶領團隊的過程中,增強自己如何和不同類型的行動者溝通的技巧,看看自己如何以協助者的角度去推動團隊的對話。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這是一個行動者的大學校,所有人都一起成長進步。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 有時候,的確什麼都不知道,會不小心誤闖禁區,但危險不該是阻礙行動的原因。
\n 評審們,有時候擔任的角色,就是讓青年更加明白,意圖或許良善,但「可以做得到的事」究竟有那些呢?團隊是否有真的認識利害關係人的需求?團隊如果要繼續走下去,有哪些專業的面向需要增進?
\n 為團隊找到業界實務經驗的評審,是迴響給予的另一個資源陪伴。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-7.vue?vue&type=template&id=9c308898&\"\nimport script from \"./y2019-7.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_7',\"isWhite\":true}},[_c('p',[_vm._v(\"有時候,的確什麼都不知道,會不小心誤闖禁區,但危險不該是阻礙行動的原因。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"評審們,有時候擔任的角色,就是讓青年更加明白,意圖或許良善,但「可以做得到的事」究竟有那些呢?團隊是否有真的認識利害關係人的需求?團隊如果要繼續走下去,有哪些專業的面向需要增進?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"為團隊找到業界實務經驗的評審,是迴響給予的另一個資源陪伴。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 當製作費用、獎金,通通都減少時,我們該如何維持以往的規模,給新的青年同樣的資源呢?
\n 在這樣變動的一年,感謝仍然有行動夥伴的支持,持續陪著迴響,和青年討論一個又一個新的看見、新的社會議題、新的洞察,然後於此同時,行動夥伴們也看見新的自己。
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-8.vue?vue&type=template&id=260c7e46&\"\nimport script from \"./y2019-8.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_8',\"isWhite\":true}},[_c('p',[_vm._v(\"當製作費用、獎金,通通都減少時,我們該如何維持以往的規模,給新的青年同樣的資源呢?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在這樣變動的一年,感謝仍然有行動夥伴的支持,持續陪著迴響,和青年討論一個又一個新的看見、新的社會議題、新的洞察,然後於此同時,行動夥伴們也看見新的自己。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 不知道你知不知道,但這是一屆完全沒有獎金的一屆。
\n 而這也是一個契機,讓我們終於找到一種屬於迴響的獎狀,「除了給錢,評審你能給予什麼陪伴、建議,讓青年團隊離開迴響後,還有下一步的資源,可以更走進社會?」
\n
\n
\n No.094 波波實驗室_民主永遠不會過期獎
\n \n
\n No.078_小紅帽_ INFINITY
\n \n
\n No.105_詩門倍思_泰雅文化復興獎
\n \n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-9.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2019-9.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2019-9.vue?vue&type=template&id=89ef07ac&\"\nimport script from \"./y2019-9.vue?vue&type=script&lang=js&\"\nexport * from \"./y2019-9.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2019_9',\"isWhite\":true}},[_c('p',[_vm._v(\"不知道你知不知道,但這是一屆完全沒有獎金的一屆。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而這也是一個契機,讓我們終於找到一種屬於迴響的獎狀,「除了給錢,評審你能給予什麼陪伴、建議,讓青年團隊離開迴響後,還有下一步的資源,可以更走進社會?」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"No.094 波波實驗室_民主永遠不會過期獎\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"No.078_小紅帽_ INFINITY\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"No.105_詩門倍思_泰雅文化復興獎\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 2020-2021 年,是嘗試與世界連結的一屆
\n 與世界連結的意思是,過往的迴響似乎踩在一種得天獨厚的環境,所有的嘗試都是我們的「想要」,但今年的執行考量了更多「未來延續」、「迴響以外的可能」
\n 開發任務包線上軟體,讓回饋更精準:
\n 線上化,讓資料的連貫性、教練回饋是更流暢的。你也可以在公開化的任務包體驗看看。
\n 開發迴圈工具包線上軟體,並沒有實際協助更好行動:
\n 不是每個團隊都仰賴這麼清晰的邏輯分析來行動的,有時候,反而讓團隊不要想得那麼清楚,趕快行動,會更有收穫。
\n 經過兩年的嘗試,我們判斷為「教練的工具」,用來判斷團隊的整體狀況再給予回饋,而不需要每個團隊都需要如此有邏輯的工具。
\n 眾力小宇宙的嘗試,是對的主題,卻不是團隊當下最需要的資源:
\n 眾力小宇宙是在討論如何集眾人之力的主題,社會創新團隊要有效發揮影響力,的確常常會遇到要號召更多人的情境。
\n 嘗試後不如預期的是,迴響團隊這個階段真正的需求,經過三個月的衝刺後,或許不需要急著在行動的進度上推進,而是需要整頓團隊動力、先把一些已知的事情做得更多次來建立自信與團隊穩定度。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-stone.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-stone.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-stone.vue?vue&type=template&id=4b0b512c&\"\nimport script from \"./y2020-stone.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-stone.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_stone',\"isWhite\":true}},[_c('h3',[_vm._v(\"2020-2021 年,是嘗試與世界連結的一屆\")]),_vm._v(\" \"),_c('p',[_vm._v(\"與世界連結的意思是,過往的迴響似乎踩在一種得天獨厚的環境,所有的嘗試都是我們的「想要」,但今年的執行考量了更多「未來延續」、「迴響以外的可能」\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"開發任務包線上軟體,讓回饋更精準:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"線上化,讓資料的連貫性、教練回饋是更流暢的。你也可以在\"),_c('a',{attrs:{\"href\":\"http://missions.rethinktaiwan.com/\",\"target\":\"_blank\"}},[_vm._v(\"公開化的任務包\")]),_vm._v(\"體驗看看。 \")]),_vm._v(\" \"),_c('h4',[_vm._v(\"開發迴圈工具包線上軟體,並沒有實際協助更好行動:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不是每個團隊都仰賴這麼清晰的邏輯分析來行動的,有時候,反而讓團隊不要想得那麼清楚,趕快行動,會更有收穫。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"經過兩年的嘗試,我們判斷為「教練的工具」,用來判斷團隊的整體狀況再給予回饋,而不需要每個團隊都需要如此有邏輯的工具。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"眾力小宇宙的嘗試,是對的主題,卻不是團隊當下最需要的資源:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"眾力小宇宙是在討論如何集眾人之力的主題,社會創新團隊要有效發揮影響力,的確常常會遇到要號召更多人的情境。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"嘗試後不如預期的是,迴響團隊這個階段真正的需求,經過三個月的衝刺後,或許不需要急著在行動的進度上推進,而是需要整頓團隊動力、先把一些已知的事情做得更多次來建立自信與團隊穩定度。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 三大精神,貫穿每一個行動,牽引著每一位迴響人。
\n 「先動,再說」
\n 「懷抱夢想,但從做得到的事情開始」
\n 「將遇到的困難,孵化成學習的機會」
\n 這些概念很容易懂,但不容易做得到;做到了,也不見得能持久;維持了,還要有容乃大,讓夥伴和自己都可以經歷這些體驗。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-1.vue?vue&type=template&id=89500d68&\"\nimport script from \"./y2020-1.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_1',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"三大精神,貫穿每一個行動,牽引著每一位迴響人。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「先動,再說」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「懷抱夢想,但從做得到的事情開始」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「將遇到的困難,孵化成學習的機會」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些概念很容易懂,但不容易做得到;做到了,也不見得能持久;維持了,還要有容乃大,讓夥伴和自己都可以經歷這些體驗。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 謹以此代表,謝謝所有歷屆概念啊攝影公司的攝影師們。
\n 這些攝影師,不只是攝影師,還是具備迴響精神的攝影師,跟著一起行動、靜下心來反思、用心感受場布的細節。
\n 這些攝影師,不只是攝影師,還是跟著一起響應、熱切回應號召者的夥伴,試著從鏡頭的語彙,去述說他們看見的事件、紀錄內心感動的時刻。
\n 謝謝你們,非常非常。
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-2.vue?vue&type=template&id=40485a82&\"\nimport script from \"./y2020-2.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_2',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_2-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"謹以此代表,謝謝所有歷屆概念啊攝影公司的攝影師們。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些攝影師,不只是攝影師,還是具備迴響精神的攝影師,跟著一起行動、靜下心來反思、用心感受場布的細節。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些攝影師,不只是攝影師,還是跟著一起響應、熱切回應號召者的夥伴,試著從鏡頭的語彙,去述說他們看見的事件、紀錄內心感動的時刻。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"謝謝你們,非常非常。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_2-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_2-3.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_2-4.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 有了先前的經驗:就是徒手迴響衣 DIY、第三屆沒有足夠的經費就有精簡的作法...
\n 那麼,第四屆活動現場的主視覺設計,就讓設計師們,直接用手畫出來吧!
\n 空白的布幕上,投影出官網的營火區域,象徵著大會師現場,就是大家的大本營,而空白處的塗鴉,則是行動團隊一一加上去的情緒線條、或是象徵行動的物件。
\n 如假似真的主視覺,一樣絕無僅有。
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-3.vue?vue&type=template&id=230da1c2&\"\nimport script from \"./y2020-3.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_3',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_3-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"有了先前的經驗:就是徒手迴響衣 DIY、第三屆沒有足夠的經費就有精簡的作法...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"那麼,第四屆活動現場的主視覺設計,就讓設計師們,直接用手畫出來吧!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"空白的布幕上,投影出官網的營火區域,象徵著大會師現場,就是大家的大本營,而空白處的塗鴉,則是行動團隊一一加上去的情緒線條、或是象徵行動的物件。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"如假似真的主視覺,一樣絕無僅有。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_3-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_3-3.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 今年,我們要讓大家知道,迴響本身,就是行動者的大本營。
\n 每個來到線上官網、實體空間,就像是在爬山路的歷程一樣,每個人有不同的頂峰要征服,但中間的休憩站、可以充電交流的大本營,就是迴響山屋!
\n 因此,現場布滿了植物、蕨類,露營用具、木頭器材,為的就是要全身心都感受到被鼓舞、被激勵,「行動路上絕不會一路安穩,但你會知道只要繼續前行,就會遇見你的伙伴。」
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-4.vue?vue&type=template&id=14dca8d6&\"\nimport script from \"./y2020-4.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_4',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_4-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"今年,我們要讓大家知道,迴響本身,就是行動者的大本營。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每個來到線上官網、實體空間,就像是在爬山路的歷程一樣,每個人有不同的頂峰要征服,但中間的休憩站、可以充電交流的大本營,就是迴響山屋!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"因此,現場布滿了植物、蕨類,露營用具、木頭器材,為的就是要全身心都感受到被鼓舞、被激勵,「行動路上絕不會一路安穩,但你會知道只要繼續前行,就會遇見你的伙伴。」\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_4-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_4-3.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_4-4.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 每一年大會師的現場,重頭戲之一是工作坊,對機制組的夥伴,都是新的挑戰。
\n 我們持續優化所有硬體(思考方法、行動迴圈包)和軟體(活動安排、適度的社交交流、迴響精神的鼓舞),當這些狀態平衡,才能讓我們輸出的知識體系,被青年更好理解、使用。
\n 「學到一生能帶著走的能力,」是驗證迴響不只是創業競賽,最好的證據。
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-5.vue?vue&type=template&id=13cef351&\"\nimport script from \"./y2020-5.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_5',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_5-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"每一年大會師的現場,重頭戲之一是工作坊,對機制組的夥伴,都是新的挑戰。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們持續優化所有硬體(思考方法、行動迴圈包)和軟體(活動安排、適度的社交交流、迴響精神的鼓舞),當這些狀態平衡,才能讓我們輸出的知識體系,被青年更好理解、使用。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「學到一生能帶著走的能力,」是驗證迴響不只是創業競賽,最好的證據。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_5-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_5-3.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 照片裡戴紅帽子的人,是二屆行動團隊,三、四屆的時候,多半由她來擔任主持人,特別是在營造氛圍、凝聚大家的心的時候。
\n 或許是某種同步、共時的巧合吧,第三、第四屆的青年團隊,有越來越多團隊在探討心靈層面所受到的創傷議題,領域觸及憂鬱、自殺、更生、部落薩滿、求學挫折...等不同的範圍。
\n 「閉上眼睛,深呼吸、長吐氣,行動過程中,「靜下來、停下來、放下來」也是無比重要的抉擇。」而我們也要適時鼓勵彼此,做出「不行動」的行動。
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-6.vue?vue&type=template&id=156608d6&\"\nimport script from \"./y2020-6.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_6',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_6-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"照片裡戴紅帽子的人,是二屆行動團隊,三、四屆的時候,多半由她來擔任主持人,特別是在營造氛圍、凝聚大家的心的時候。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"或許是某種同步、共時的巧合吧,第三、第四屆的青年團隊,有越來越多團隊在探討心靈層面所受到的創傷議題,領域觸及憂鬱、自殺、更生、部落薩滿、求學挫折...等不同的範圍。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「閉上眼睛,深呼吸、長吐氣,行動過程中,「靜下來、停下來、放下來」也是無比重要的抉擇。」而我們也要適時鼓勵彼此,做出「不行動」的行動。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_6-1.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 如同每一屆的評審,每一屆的行動夥伴,每一次的評選,都再一次提醒著迴響夥伴,「我們坐在所謂的評審室、評審桌前看到的提案,有些人可能是用盡了勇氣,第一次踏出第一步行動的人;有些人可能深陷議題許久,第一次成為行動者去改變現況...」
\n 而面對這樣的團隊,我們如何秉持著迴響初衷?讓評審給予的不只是夠不夠資格獲得資源,而是團隊們還可以得到什麼方法和幫助,讓青年們自行決定下一步的可能。
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-7.vue?vue&type=template&id=2d4ae3b3&\"\nimport script from \"./y2020-7.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_7',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_7-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"如同每一屆的評審,每一屆的行動夥伴,每一次的評選,都再一次提醒著迴響夥伴,「我們坐在所謂的評審室、評審桌前看到的提案,有些人可能是用盡了勇氣,第一次踏出第一步行動的人;有些人可能深陷議題許久,第一次成為行動者去改變現況...」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而面對這樣的團隊,我們如何秉持著迴響初衷?讓評審給予的不只是夠不夠資格獲得資源,而是團隊們還可以得到什麼方法和幫助,讓青年們自行決定下一步的可能。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_7-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_7-3.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 今年的重大突破之一,就是拉長青年的行動,和以行之有年的議題團隊,一起合作、探詢:「號召志工的心法,把人找來,然後呢?」
\n 六組議題團隊,過去幾年下來,都透過實際行動累積一定程度與深度的知識、經驗,也藉由這次的合作機會,試著寫出「號召的方法論」,找到創新志工的新可能。
\n 第一步,往往非常困難,有機會邀請您來聽我們的線上直播,分享這一次的實驗心得。
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-8.vue?vue&type=template&id=9ccc1dfa&\"\nimport script from \"./y2020-8.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_8',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_8-1.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"今年的重大突破之一,就是拉長青年的行動,和以行之有年的議題團隊,一起合作、探詢:「號召志工的心法,把人找來,然後呢?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"六組議題團隊,過去幾年下來,都透過實際行動累積一定程度與深度的知識、經驗,也藉由這次的合作機會,試著寫出「號召的方法論」,找到創新志工的新可能。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第一步,往往非常困難,有機會邀請您來聽我們的線上直播,分享這一次的實驗心得。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_8-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_8-3.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_8-4.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_8-5.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/2020_8-6.jpg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n 做網站要崩潰時,那一天所有人跑到陽台去看外面的彩虹,這約莫時半年前的事,第四屆正要開啟報名的時候。
\n 現在,到了尾聲,也應該是快要崩潰之際吧,所有人 WFH 在家裡面遠端連線 、支持,完成我們心目中那最完整、能串連所有人事物的成果。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-9.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./y2020-9.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./y2020-9.vue?vue&type=template&id=0d51f23a&\"\nimport script from \"./y2020-9.vue?vue&type=script&lang=js&\"\nexport * from \"./y2020-9.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'y2020_9',\"isWhite\":true}},[_c('img',{attrs:{\"src\":require(\"./images/2020_9.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"做網站要崩潰時,那一天所有人跑到陽台去看外面的彩虹,這約莫時半年前的事,第四屆正要開啟報名的時候。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"現在,到了尾聲,也應該是快要崩潰之際吧,所有人 WFH 在家裡面遠端連線 、支持,完成我們心目中那最完整、能串連所有人事物的成果。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 迴響的十年願景
\n\n 引言:認真看待一件傻事
\n 此刻的台灣,「真的去實踐」常常被視為一件傻事。我們著迷於方便、快速、及時可用的方法或觀點,依賴專家卻又輕視專家,好像我們自己無所不能;對付出行動的人高傲的評論,對自己內心的渴望自卑而壓抑;因為太少回應內心的渴望,也漸漸聽不到自己真實的聲音,只能人云亦云,極化的言論快速獲得贊同,誰覺得有哪裡怪怪的,想要試著做點什麼,反而變成一件更傻的事...
\n 現在,想請你回想一個這樣的時刻,當身邊的人帶著發光的眼睛和你說:「欸,你們有沒有想過...」「你聽聽看!我在想,或許可以...」「我有一個新的想法...」時...你是怎麼回應他的呢?無論你是大力支持,還是澆下一盆成熟的冷水,我們都希望可以提供你一個重新看待「行動」的觀點。
\n\n 迴響的初心:相信行動的價值
\n 相信偶爾幹點傻事,是值得被鼓勵的事,因為...
\n 實際試著做做看以後,人會變的謙虛,認清理想和現實間的差距,瞭解我們還需要多少努力,和彼此的幫助,才能共同成就一個更理想的社會;
\n 實際試著做做看以後,人會變的清楚,認清自己真的喜歡的事情,不再忽視內心的渴望,也能更細心的照顧其他人的渴望;
\n 實際試著做做看以後,人會變的勇敢,即便能做到的有限,也會因為更清楚自己做得到的事情,而有了要變的更好的信念,終於能夠為自己所有的而堅持,去面對更困難的事。
\n\n 迴響的願景:讓行動成為一個自然而然的選項
\n 直到我們一起生活在這樣一個社會:
\n 當你有不同意見的時候,大家會在肯定或否定之前,先期待你實際行動後的反思和結果,因為每個人都會同意,這個社會有太多值得並存的價值,有很多我們還沒有能力發現的事,面對變動和挑戰,我們永遠要撐開一些空間給「試著做看看」。
\n 當更多人放心地為自己相信的事情投入行動,我們就能一起明白,要達成理想有多麼困難,在對立的觀點之間,需要有更多實際的行動支撐起對話的橋樑,於是你可以過來,我也可以過去,在交會的時候明白,我們其實沒有這麼不同;於是沒有人需要屈就於待在原地抱怨,你不需要變的極端才有存在的價值,每一條路,都值得走,每一個人,都有機會被接受。
\n\n 迴響的使命:給心裡還有渴望的人,一個採取行動的藉口
\n 今年(2021)是忌諱行動的一年,我們變的不敢出門,討厭別人群聚,在網路上指謫我們覺得做錯事情的人,沒有幾天風向改變,我們又開始尋找新的錯誤,等待下一個發洩的機會。雖然很負面,但這種時刻也幫助我們重新認識,其實每個人的心裡都存著一股能量,在疫情的期間因為沒有出口,而毫無道理的釋放。
\n 怎麼會憑空生氣呢?我們是壞的人嗎?如果靜下心來仔細一想,這股「想做點什麼」的能量,應該是來自於我們對理想狀態的渴望。
\n 除了對社會的期待,也有對自己的期待。總是想創造一些屬於自己的東西、想知道自己會變成什麼樣子、想看見不一樣的世界、想為珍惜的人事物真的做點什麼,一旦渴望無法化為行動時,就成了很深的挫折,轉為同樣程度的負面能量,藉由攻擊他者消化這種失望。
\n 是阿,無論未來的世界裡,行動如何被鼓勵,採取行動仍代表把自己丟進可能會失敗的處境,代表為自己的決定負責,代表為那些被捨棄的選項負責,「要不要試試看呢?」面對這種超級值得卻步的時刻,我們需要夥伴、需要工具、需要拉出能看清自己的空間、需要更多與外界溝通自己想法的機會,即便相信行動的價值,這些需求仍無可迴避的存在,這是迴響要一直這樣走下去的原動力。
\n 迴響計畫基於相信行動的價值,致力於將青年對理想社會(理想中的自己)的渴望,轉換成可以採取行動的方案,設計階段性的目標和支持系統,讓每一次行動都有學習的效益,讓有共同信念的夥伴們,一起期待你的下一步,讓每個人都能體會,看見自己的行動超展開的樂趣。
\n 未來,當你心中的渴望發芽時,要記得總會有一個計畫會支持你,用你可以做得到的方式去嘗試。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-stone-tablet.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s1-stone-tablet.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s1-stone-tablet.vue?vue&type=template&id=87d76a1a&\"\nimport script from \"./s1-stone-tablet.vue?vue&type=script&lang=js&\"\nexport * from \"./s1-stone-tablet.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s1_stone_tablet',\"isWhite\":true}},[_c('h3',[_vm._v(\"迴響的十年願景\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"引言:認真看待一件傻事\")]),_vm._v(\" \"),_c('p',[_vm._v(\"此刻的台灣,「真的去實踐」常常被視為一件傻事。我們著迷於方便、快速、及時可用的方法或觀點,依賴專家卻又輕視專家,好像我們自己無所不能;對付出行動的人高傲的評論,對自己內心的渴望自卑而壓抑;因為太少回應內心的渴望,也漸漸聽不到自己真實的聲音,只能人云亦云,極化的言論快速獲得贊同,誰覺得有哪裡怪怪的,想要試著做點什麼,反而變成一件更傻的事...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"現在,想請你回想一個這樣的時刻,當身邊的人帶著發光的眼睛和你說:「欸,你們有沒有想過...」「你聽聽看!我在想,或許可以...」「我有一個新的想法...」時...你是怎麼回應他的呢?無論你是大力支持,還是澆下一盆成熟的冷水,我們都希望可以提供你一個重新看待「行動」的觀點。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"迴響的初心:相信行動的價值\")]),_vm._v(\" \"),_c('p',[_vm._v(\"相信偶爾幹點傻事,是值得被鼓勵的事,因為...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"實際試著做做看以後,人會變的謙虛,認清理想和現實間的差距,瞭解我們還需要多少努力,和彼此的幫助,才能共同成就一個更理想的社會;\")]),_vm._v(\" \"),_c('p',[_vm._v(\"實際試著做做看以後,人會變的清楚,認清自己真的喜歡的事情,不再忽視內心的渴望,也能更細心的照顧其他人的渴望;\")]),_vm._v(\" \"),_c('p',[_vm._v(\"實際試著做做看以後,人會變的勇敢,即便能做到的有限,也會因為更清楚自己做得到的事情,而有了要變的更好的信念,終於能夠為自己所有的而堅持,去面對更困難的事。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"迴響的願景:讓行動成為一個自然而然的選項\")]),_vm._v(\" \"),_c('p',[_vm._v(\"直到我們一起生活在這樣一個社會:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當你有不同意見的時候,大家會在肯定或否定之前,先期待你實際行動後的反思和結果,因為每個人都會同意,這個社會有太多值得並存的價值,有很多我們還沒有能力發現的事,面對變動和挑戰,我們永遠要撐開一些空間給「試著做看看」。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當更多人放心地為自己相信的事情投入行動,我們就能一起明白,要達成理想有多麼困難,在對立的觀點之間,需要有更多實際的行動支撐起對話的橋樑,於是你可以過來,我也可以過去,在交會的時候明白,我們其實沒有這麼不同;於是沒有人需要屈就於待在原地抱怨,你不需要變的極端才有存在的價值,每一條路,都值得走,每一個人,都有機會被接受。\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"迴響的使命:給心裡還有渴望的人,一個採取行動的藉口\")]),_vm._v(\" \"),_c('p',[_vm._v(\"今年(2021)是忌諱行動的一年,我們變的不敢出門,討厭別人群聚,在網路上指謫我們覺得做錯事情的人,沒有幾天風向改變,我們又開始尋找新的錯誤,等待下一個發洩的機會。雖然很負面,但這種時刻也幫助我們重新認識,其實每個人的心裡都存著一股能量,在疫情的期間因為沒有出口,而毫無道理的釋放。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"怎麼會憑空生氣呢?我們是壞的人嗎?如果靜下心來仔細一想,這股「想做點什麼」的能量,應該是來自於我們對理想狀態的渴望。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"除了對社會的期待,也有對自己的期待。總是想創造一些屬於自己的東西、想知道自己會變成什麼樣子、想看見不一樣的世界、想為珍惜的人事物真的做點什麼,一旦渴望無法化為行動時,就成了很深的挫折,轉為同樣程度的負面能量,藉由攻擊他者消化這種失望。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"是阿,無論未來的世界裡,行動如何被鼓勵,採取行動仍代表把自己丟進可能會失敗的處境,代表為自己的決定負責,代表為那些被捨棄的選項負責,「要不要試試看呢?」面對這種超級值得卻步的時刻,我們需要夥伴、需要工具、需要拉出能看清自己的空間、需要更多與外界溝通自己想法的機會,即便相信行動的價值,這些需求仍無可迴避的存在,這是迴響要一直這樣走下去的原動力。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響計畫基於相信行動的價值,致力於將青年對理想社會(理想中的自己)的渴望,轉換成可以採取行動的方案,設計階段性的目標和支持系統,讓每一次行動都有學習的效益,讓有共同信念的夥伴們,一起期待你的下一步,讓每個人都能體會,看見自己的行動超展開的樂趣。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"未來,當你心中的渴望發芽時,要記得總會有一個計畫會支持你,用你可以做得到的方式去嘗試。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動路上的三大精神
\n 迴響的三大精神是三種心態,回應三種在採取行動的路上會遇到的問題,也可以說是三個提醒,幫助我們在還沒有方法和工具時,知道如何面對挫折和矛盾,繼續前進。
\n \n
\n 先動,再說
\n 我們都缺乏行動自信。
\n 所以花很多時間在討論、查找資料,辯論誰的觀點才是正確的,卻不會付諸行動。道理很簡單,因為想法放在腦子裡,或拿出來講,都不會失敗,只有將之付諸行動,才會需要面對失敗。
\n 而我們都害怕失敗,無一例外,所以我們容易忽視行動帶來的可能性,和那些只有真得去做才能獲得的學習。
\n \n \n 每年的迴響,都會遇到這樣的團隊,想要再多查一些資料、再多讀一些文獻,來讓自己「有資格」為在意的事做點什麼。但其實,更多資料只會讓我們更難開始,誤會什麼都有人做過了,放棄用具體的行動,建立屬於自己觀點的機會。
\n 迴響大會師的第二天早上,是青年出發採取行動的時段,一旦在會場遇到仍在查資料的團隊,我們都會不厭其煩地問他「那你當初在意的議題是什麼?」「你原本想怎麼做?」「你要不要就先試著這樣做做看?」。屢試不爽,他們總是在出門後獲得更多。
\n 執行團隊自己也受這樣的精神影響,所以不會有延續超過一日的爭執,因為隔天不同想法的原型(Prototype)就會被做出來,拿給彼此測試後,馬上就會得到有意義的反餽,任務包就是在這樣反覆測試的過程中誕生。
\n\n
\n 懷抱夢想,但從做得到的事情開始
\n 實際試試看並不簡單,尤其是拿著完美的計畫,想跨出最有效益的一大步時,期待越大,往往失望也越大,很容易就澆熄了繼續前進的熱情。
\n 迴響的經驗是,再遠大的夢想都有起點,再困難的事情,都有簡單做的方式,找出第一個能做到的事情並勇敢實踐,是對自己的夢想負責最好的方式。
\n \n \n 迴響第一屆團隊「讓我罩顧你」的提案,是做一個可以吸收口水的口罩,讓顏面神經失調,容易流口水的患者可以有尊嚴的出門,也降低照護者的負擔。要做口罩,是不是要找工廠?不用,團隊成員訂購了各種現成的吸水口罩,都發現效果不佳,最後將衛生棉縫上口罩製作出第一個 Prototype,至此,他們至少可以知道患者願不願意戴口罩,和他們會需要口罩的真實情境。
\n\n\n
\n 將遭遇的困難,轉化成學習的機會
\n 即便已經試著行動了,也從自認為做得到的事情開始,還是會被現實打臉,有時甚至會腫到看不清楚前面的路。
\n 沒錯...行動其實沒有想像中那麼美好!但遇到困難與挫敗時,要記得我們仍有選擇,可以選擇當他是敵人,抱怨或逃跑,也可以選擇面對,發現學習的機會。迴響的態度是,在哪裡跌倒,就在哪裡躺好。
\n 遇到困難和挑戰,不妨休息一下,然後放低姿態,從學習的角度重新看待眼前的挫折。因為每一次挫折,都是撞進理想和現實之間的差距,你可以調低理想,當然也可以藉此反思我們真正的理想是什麼?還可以怎麼達到。
\n \n \n 迴響自創立之初到現在,遇到的困難幾乎都促成後續的創新。最早期的困難,是到底要設立哪些徵件的主題類別?一般計畫都會有「永續環境」、「社會文化」、「智慧物聯」...等等的主題分類,參與者提交符合該主題的提案,主辦單位從各個類別中挑選出固定的名額晉級。然而,迴響最初因為希望青年都能從自己的生活和在意的問題出發,題目固然包羅萬象,但極難事前提出有系統的分類。
\n 不過,為什麼要分類呢?我們當時想,既然要做一個新的計畫,那就要打破框架,重新思考每一個「覺得好像應該要做而做的事情」的事。
\n 一般計畫的分類目的,有的是為了增加多元性,觸及到關注不同議題的族群,也增加篩選到好團隊的機率,有的是希望主題訂定後,便於邀請相關領域的評審和業師,確保篩選的公平和輔導的正當性。然而,這些分類多半都模糊籠統,多數時候不一定具有實質意義。
\n 幾經考量後,迴響決定不做分類,反而因此重新意識到,我們是一個鼓勵青年採取「第一步」行動的計畫,我們的重點不是培力青年在各個領域提出多專業的解決方案,而是回應這個跨出第一步所需要面臨的共同困難,釐清行動計畫的初期會面對的挑戰,並建構克服的工具和方法。
\n 這個概念加深了要整理「行動方法論」的信念,指引了行動夥伴的訪談、招募,也幫助我們將計畫設計的重點聚焦在迴響裡的階段設計和促成行動的評選機制。
\n\n
\n
\n 迴響精神的意義
\n 迴響的三大精神,涵蓋了行動的三個主要情境,開始、面對卡關時和面對失敗的時刻,雖然說是一個提醒,我們卻默默希望他能是更大更遠的東西。
\n 我們期待迴響的精神,能把一時一刻我們最理想的樣子存起來,當我們感到孤立無援時,幫助我們認出夥伴,互相提醒、彼此打氣;當我們的身心已不再有力時,仍然能支持我們,一直朝理想前進。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-three-spiritual.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-three-spiritual.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-three-spiritual.vue?vue&type=template&id=b1cd5e90&\"\nimport script from \"./s2-three-spiritual.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-three-spiritual.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_three_spiritual',\"isWhite\":true}},[_c('h3',[_vm._v(\"行動路上的三大精神\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的三大精神是三種心態,回應三種在採取行動的路上會遇到的問題,也可以說是三個提醒,幫助我們在還沒有方法和工具時,知道如何面對挫折和矛盾,繼續前進。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"先動,再說\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們都缺乏行動自信。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"所以花很多時間在討論、查找資料,辯論誰的觀點才是正確的,卻不會付諸行動。道理很簡單,因為想法放在腦子裡,或拿出來講,都不會失敗,只有將之付諸行動,才會需要面對失敗。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"而我們都害怕失敗,無一例外,所以我們容易忽視行動帶來的可能性,和那些只有真得去做才能獲得的學習。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每年的迴響,都會遇到這樣的團隊,想要再多查一些資料、再多讀一些文獻,來讓自己「有資格」為在意的事做點什麼。但其實,更多資料只會讓我們更難開始,誤會什麼都有人做過了,放棄用具體的行動,建立屬於自己觀點的機會。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響大會師的第二天早上,是青年出發採取行動的時段,一旦在會場遇到仍在查資料的團隊,我們都會不厭其煩地問他「那你當初在意的議題是什麼?」「你原本想怎麼做?」「你要不要就先試著這樣做做看?」。屢試不爽,他們總是在出門後獲得更多。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"執行團隊自己也受這樣的精神影響,所以不會有延續超過一日的爭執,因為隔天不同想法的原型(Prototype)就會被做出來,拿給彼此測試後,馬上就會得到有意義的反餽,任務包就是在這樣反覆測試的過程中誕生。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"懷抱夢想,但從做得到的事情開始\")]),_vm._v(\" \"),_c('p',[_vm._v(\"實際試試看並不簡單,尤其是拿著完美的計畫,想跨出最有效益的一大步時,期待越大,往往失望也越大,很容易就澆熄了繼續前進的熱情。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的經驗是,再遠大的夢想都有起點,再困難的事情,都有簡單做的方式,找出第一個能做到的事情並勇敢實踐,是對自己的夢想負責最好的方式。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響第一屆團隊「讓我罩顧你」的提案,是做一個可以吸收口水的口罩,讓顏面神經失調,容易流口水的患者可以有尊嚴的出門,也降低照護者的負擔。要做口罩,是不是要找工廠?不用,團隊成員訂購了各種現成的吸水口罩,都發現效果不佳,最後將衛生棉縫上口罩製作出第一個 Prototype,至此,他們至少可以知道患者願不願意戴口罩,和他們會需要口罩的真實情境。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"將遭遇的困難,轉化成學習的機會\")]),_vm._v(\" \"),_c('p',[_vm._v(\"即便已經試著行動了,也從自認為做得到的事情開始,還是會被現實打臉,有時甚至會腫到看不清楚前面的路。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"沒錯...行動其實沒有想像中那麼美好!但遇到困難與挫敗時,要記得我們仍有選擇,可以選擇當他是敵人,抱怨或逃跑,也可以選擇面對,發現學習的機會。迴響的態度是,在哪裡跌倒,就在哪裡躺好。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"遇到困難和挑戰,不妨休息一下,然後放低姿態,從學習的角度重新看待眼前的挫折。因為每一次挫折,都是撞進理想和現實之間的差距,你可以調低理想,當然也可以藉此反思我們真正的理想是什麼?還可以怎麼達到。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響自創立之初到現在,遇到的困難幾乎都促成後續的創新。最早期的困難,是到底要設立哪些徵件的主題類別?一般計畫都會有「永續環境」、「社會文化」、「智慧物聯」...等等的主題分類,參與者提交符合該主題的提案,主辦單位從各個類別中挑選出固定的名額晉級。然而,迴響最初因為希望青年都能從自己的生活和在意的問題出發,題目固然包羅萬象,但極難事前提出有系統的分類。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不過,為什麼要分類呢?我們當時想,既然要做一個新的計畫,那就要打破框架,重新思考每一個「覺得好像應該要做而做的事情」的事。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一般計畫的分類目的,有的是為了增加多元性,觸及到關注不同議題的族群,也增加篩選到好團隊的機率,有的是希望主題訂定後,便於邀請相關領域的評審和業師,確保篩選的公平和輔導的正當性。然而,這些分類多半都模糊籠統,多數時候不一定具有實質意義。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"幾經考量後,迴響決定不做分類,反而因此重新意識到,我們是一個鼓勵青年採取「第一步」行動的計畫,我們的重點不是培力青年在各個領域提出多專業的解決方案,而是回應這個跨出第一步所需要面臨的共同困難,釐清行動計畫的初期會面對的挑戰,並建構克服的工具和方法。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這個概念加深了要整理「行動方法論」的信念,指引了行動夥伴的訪談、招募,也幫助我們將計畫設計的重點聚焦在迴響裡的階段設計和促成行動的評選機制。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"迴響精神的意義\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的三大精神,涵蓋了行動的三個主要情境,開始、面對卡關時和面對失敗的時刻,雖然說是一個提醒,我們卻默默希望他能是更大更遠的東西。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們期待迴響的精神,能把一時一刻我們最理想的樣子存起來,當我們感到孤立無援時,幫助我們認出夥伴,互相提醒、彼此打氣;當我們的身心已不再有力時,仍然能支持我們,一直朝理想前進。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 初代行動者登頂後,因為看到了十年的願景,於是聚集在迴圈森林討論,該怎麼樣才能幫助更多人採取行動。
\n 他們想要支持行動的信念太過強烈,竟具現化為不同的小精靈,留在迴圈森林,偷聽歷代登頂者的行動經驗,日復一日,他們整理出不同的工具和方法,希望能為這個世界做點甚麼。
\n 然而,無論怎麼努力,小精靈也走不出這個森林,他們只能活在鼓勵行動的環境,這讓不少精靈夥伴感到疲憊,有些時刻甚至想要放棄。
\n
\n
\n
\n 感謝你,點起這把火炬,這是歷代行動者們集會的樹洞,他們曾在這裡天真地討論著行動和世界關係,已經很久沒有被點亮了...
\n 火光照亮周遭的壁畫,裡面講述著初代行動者的故事和信念,如果可以,請你將這份支持行動的信念帶出這片森林。去鼓勵身邊的人,當他們有真的很想做到,卻看起來很傻的事情;先不要澆他們冷水,當我們的社會已經有夠多的嘲諷和敵意;用行動支持他們,你會驚訝於行動的連鎖反應,看見更多想像不到的美好事情。
\n 會有奇蹟的吧,當越來越多人,用心照顧這些行動的渴望,你也要隨時注意,或許會在教室的窗沿、辦公桌前,注意到這些支持行動的小精靈。
\n
\n
\n
\n \n When the whole world is silent, even one voice becomes powerful.
\n Malala Yousafzai\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-big-tree-hole.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-big-tree-hole.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-big-tree-hole.vue?vue&type=template&id=75282b15&\"\nimport script from \"./s2-big-tree-hole.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-big-tree-hole.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_big_tree_hole'}},[_c('p',[_vm._v(\"初代行動者登頂後,因為看到了十年的願景,於是聚集在迴圈森林討論,該怎麼樣才能幫助更多人採取行動。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"他們想要支持行動的信念太過強烈,竟具現化為不同的小精靈,留在迴圈森林,偷聽歷代登頂者的行動經驗,日復一日,他們整理出不同的工具和方法,希望能為這個世界做點甚麼。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"然而,無論怎麼努力,小精靈也走不出這個森林,他們只能活在鼓勵行動的環境,這讓不少精靈夥伴感到疲憊,有些時刻甚至想要放棄。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"感謝你,點起這把火炬,這是歷代行動者們集會的樹洞,他們曾在這裡天真地討論著行動和世界關係,已經很久沒有被點亮了...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"火光照亮周遭的壁畫,裡面講述著初代行動者的故事和信念,如果可以,請你將這份支持行動的信念帶出這片森林。去鼓勵身邊的人,當他們有真的很想做到,卻看起來很傻的事情;先不要澆他們冷水,當我們的社會已經有夠多的嘲諷和敵意;用行動支持他們,你會驚訝於行動的連鎖反應,看見更多想像不到的美好事情。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"會有奇蹟的吧,當越來越多人,用心照顧這些行動的渴望,你也要隨時注意,或許會在教室的窗沿、辦公桌前,注意到這些支持行動的小精靈。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"\\n When the whole world is silent, even one voice becomes powerful.\"),_c('br'),_vm._v(\"\\n Malala Yousafzai\\n \")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 任務包
\n 任務包是靑年迴響計畫開發的一套行動工具,在計畫提案的階段,團隊對議題有個模糊的認識、還不確定可以怎麼解決問題時,任務包用線上課程搭配學習單,提供基本的行動知識與工具,讓團隊可以有步驟且有條理地一步步前進,一邊向內探索團隊成員間觀點的差異,一邊向外有實際採取的第一步行動的指引,其中的任務包含:
\n • 辨識議題假設:協助團隊消化彼此對於議題的觀點,豐富對議題的認識
• 規劃與執行訪談:協助團隊藉由訪談接觸到不同觀點
• 問題整理框架:協助團隊消化訪談資料,將問題聚焦,取得團隊共識
• 發想的架構與指引:協助團體發揮創意,想像不同的可能性
\n
\n
\n 經過四年的反覆修正,今年迴響計畫希望能讓更多還在猶豫、對於行動還不是很有把握的青年,能夠使用任務包資源展開自己的第一步,因此決定將完整的任務包全面公開。
\n 這本任務包概覽手冊,將帶你初步認識任務包的運作邏輯與行動價値,可以立即下載,馬上聞香。如果你有實際專案想要開始使用任務包展開第一步,也可以任務包實戰基地實際體驗任務包的流程。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-1.vue?vue&type=template&id=d64ab38a&\"\nimport script from \"./s2-studio-1.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_1',\"isWhite\":true}},[_c('h3',[_vm._v(\"任務包\")]),_vm._v(\" \"),_c('p',[_vm._v(\"任務包是靑年迴響計畫開發的一套行動工具,在計畫提案的階段,團隊對議題有個模糊的認識、還不確定可以怎麼解決問題時,任務包用線上課程搭配學習單,提供基本的行動知識與工具,讓團隊可以有步驟且有條理地一步步前進,一邊向內探索團隊成員間觀點的差異,一邊向外有實際採取的第一步行動的指引,其中的任務包含:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 辨識議題假設:協助團隊消化彼此對於議題的觀點,豐富對議題的認識\"),_c('br'),_vm._v(\"• 規劃與執行訪談:協助團隊藉由訪談接觸到不同觀點\"),_c('br'),_vm._v(\"• 問題整理框架:協助團隊消化訪談資料,將問題聚焦,取得團隊共識\"),_c('br'),_vm._v(\"• 發想的架構與指引:協助團體發揮創意,想像不同的可能性\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"經過四年的反覆修正,今年迴響計畫希望能讓更多還在猶豫、對於行動還不是很有把握的青年,能夠使用任務包資源展開自己的第一步,因此決定將完整的任務包全面公開。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這本\"),_c('a',{attrs:{\"href\":\"https://gmail.us6.list-manage.com/subscribe?u=38244faddfcf581ece1c2d6fb&id=71db184b96\",\"target\":\"_blank\"}},[_vm._v(\"任務包概覽手冊\")]),_vm._v(\",將帶你初步認識任務包的運作邏輯與行動價値,可以立即下載,馬上聞香。如果你有實際專案想要開始使用任務包展開第一步,也可以\"),_c('a',{attrs:{\"href\":\"http://missions.rethinktaiwan.com/\",\"target\":\"_blank\"}},[_vm._v(\"任務包實戰基地\")]),_vm._v(\"實際體驗任務包的流程。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動迴圈
\n 「追根究底,假如不懂重新站起來的方法,我們就不願意冒險。假如我們勇敢的時間夠多,一定會跌倒。」- Brené Brown 《召喚勇氣》
\n 真實世界比我們理解的複雜許多,大多初期的行動都不會如預期,剛開始探索之際,為了協助青年能有效地推進議題,我們結合了團隊過往設計思考的教練經驗,參考精實執行 (Running Lean) 和精實創業 (Lean Startup) 的方法論,設計了行動迴圈的概念,可以讓團隊的每次討論、行動時,都可以有清楚的目標。
\n
\n
\n
\n 迴圈從圖中左下角開始:
\n • 從一個最小可行的行動方案來展開行動
• 從行動中獲得回饋、觀察、訪談...等等整理出新的資訊
• 停下來反思,比對新資訊與舊觀點,整理成新的觀點
• 根據新的觀點,發想不同的切入點,規劃成具體的行動方案
\n 行動迴圈知易行難...
\n 行動迴圈順著看會覺得很好理解、是一個理所當然的框架,然而多數時候,深陷在行動中的團隊往往不會照著迴圈來。
\n 想像今天你是一個蠻有行動力的青年,你想激起一個議題的討論、推廣,於是你辦了一場演講活動,聯絡講師、確定講題、行銷宣傳...當天真的來了一群人。
\n 可是這天的你,忙著報到、打電話給沒有來的人、確定投影機與冷氣,等到確定一切就定位,演講已經開始四十分鐘,心裡也有些浮躁,緊接著活動結束,拍完合照便開心地送走講師、觀眾。
\n 隔天起床,當你問自己「你還可以為議題做些什麼?」,發現好像沒有從昨天的行動中獲得新資訊,或者說,沒有意識到要「有意識」的這麼做,感覺昨天的演講成效不錯,是不是再繼續辦更多講座?
\n 這是常見的狀況,把這個案例放進行動迴圈,有一個具體的方案、有行動力,但是這樣的行動,沒有帶給團隊足夠的新資訊,因此團隊對於議題的觀點也沒有辦法順利深化,更難發想出有意義的新行動規劃。
\n
\n
\n 有了行動迴圈可以怎麼做?
\n 「所有行動,都要檢視那是要為我們帶來甚麼新資訊?為什麼我們需要這些新資訊?行動的規劃是否真的能幫助我們帶來新資訊?」
\n 辦講座沒有不好,但我們規劃時,可以有意識的安排事前、事後的訪談、問卷。試著在活動中除了聽講,也加入更多討論的環節,試著在人力的安排上,確保夥伴都能參與、觀察重要的討論
\n 這樣,我們才能在過程中獲得更多的資訊,找到對於議題更有效的切入點,才能真的「越做越深」
\n
\n
\n 行動工具模板
\n \n • 行動前整理假設,幫助聚焦的法寶:行動規劃書
\n • 行動後整理新資訊的法寶:打包捕捉表
\n • 幫助切換視角,從複雜的觀點中找到行動切入點的工具:HMW(How Might We) 問句\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-2.vue?vue&type=template&id=a603fc8e&\"\nimport script from \"./s2-studio-2.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_2',\"isWhite\":true}},[_c('h3',[_vm._v(\"行動迴圈\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「追根究底,假如不懂重新站起來的方法,我們就不願意冒險。假如我們勇敢的時間夠多,一定會跌倒。」- Brené Brown 《召喚勇氣》\")]),_vm._v(\" \"),_c('p',[_vm._v(\"真實世界比我們理解的複雜許多,大多初期的行動都不會如預期,剛開始探索之際,為了協助青年能有效地推進議題,我們結合了團隊過往設計思考的教練經驗,參考精實執行 (Running Lean) 和精實創業 (Lean Startup) 的方法論,設計了行動迴圈的概念,可以讓團隊的每次討論、行動時,都可以有清楚的目標。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('img',{attrs:{\"calss\":\"w-350\",\"src\":require(\"./images/action-loop.svg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('h4',[_vm._v(\"迴圈從圖中左下角開始:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 從一個最小可行的行動方案來展開行動\"),_c('br'),_vm._v(\"• 從行動中獲得回饋、觀察、訪談...等等整理出新的資訊\"),_c('br'),_vm._v(\"• 停下來反思,比對新資訊與舊觀點,整理成新的觀點\"),_c('br'),_vm._v(\"• 根據新的觀點,發想不同的切入點,規劃成具體的行動方案\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"行動迴圈知易行難...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動迴圈順著看會覺得很好理解、是一個理所當然的框架,然而多數時候,深陷在行動中的團隊往往不會照著迴圈來。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"想像今天你是一個蠻有行動力的青年,你想激起一個議題的討論、推廣,於是你辦了一場演講活動,聯絡講師、確定講題、行銷宣傳...當天真的來了一群人。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"可是這天的你,忙著報到、打電話給沒有來的人、確定投影機與冷氣,等到確定一切就定位,演講已經開始四十分鐘,心裡也有些浮躁,緊接著活動結束,拍完合照便開心地送走講師、觀眾。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"隔天起床,當你問自己「你還可以為議題做些什麼?」,發現好像沒有從昨天的行動中獲得新資訊,或者說,沒有意識到要「有意識」的這麼做,感覺昨天的演講成效不錯,是不是再繼續辦更多講座?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這是常見的狀況,把這個案例放進行動迴圈,有一個具體的方案、有行動力,但是這樣的行動,沒有帶給團隊足夠的新資訊,因此團隊對於議題的觀點也沒有辦法順利深化,更難發想出有意義的新行動規劃。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"有了行動迴圈可以怎麼做?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「所有行動,都要檢視那是要為我們帶來甚麼新資訊?為什麼我們需要這些新資訊?行動的規劃是否真的能幫助我們帶來新資訊?」 \")]),_vm._v(\" \"),_c('p',[_vm._v(\"辦講座沒有不好,但我們規劃時,可以有意識的安排事前、事後的訪談、問卷。試著在活動中除了聽講,也加入更多討論的環節,試著在人力的安排上,確保夥伴都能參與、觀察重要的討論\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這樣,我們才能在過程中獲得更多的資訊,找到對於議題更有效的切入點,才能真的「越做越深」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"行動工具模板\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 行動前整理假設,幫助聚焦的法寶:\"),_c('a',{attrs:{\"href\":\"https://xn--docs-kq0g30b.google.com/presentation/d/e/2PACX-1vRGpgse7m7ta2iph7QRYWvChrw80pjK_2Lz258yWQD9zQWhgPStjAEvu58-ksYrmYCQBp8CyC4KWbEK/pub?start=false&loop=false&delayms=3000&slide=id.ge4740eef85_0_0\",\"target\":\"_blank\"}},[_vm._v(\"行動規劃書\")]),_c('br'),_vm._v(\"\\n • 行動後整理新資訊的法寶:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/presentation/d/e/2PACX-1vRAhvItruXiwDqQ6tVv2GW_8mzTK9qDVdITm1fIn1MEgZODe8Yzp2LG8aV0flD3gCxQMADxi2-Z9rFg/pub?start=false&loop=false&delayms=3000&slide=id.ge71a5f0f4a_0_0\",\"target\":\"_blank\"}},[_vm._v(\"打包捕捉表\")]),_c('br'),_vm._v(\"\\n • 幫助切換視角,從複雜的觀點中找到行動切入點的工具:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/presentation/d/e/2PACX-1vTXXWxpPsf53rsvaOUDWtNEEjwuXTTr7itzPpqvWg-HRKPfAf1_S6GeZESyrW5mQJoyc-AThBIhYMWv/pub?start=false&loop=false&delayms=3000&slide=id.p\",\"target\":\"_blank\"}},[_vm._v(\"HMW(How Might We) 問句\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 設計思考教練
\n 設計思考教練,協助團隊將問題化為學習的機會
\n 迴響提供了許多行動的方法與工具,但是每個團隊都有不同的步調和風格,沒有一個完美的工具可以適用團隊所有的問題。
\n 設計思考教練團,是一群熟悉這些行動工具、會議引導技巧的小精靈,從實體活動大會師開始,每組會配對一位教練,第一線了解團隊困難,陪伴團隊將問題化為學習的機會、將衝突化為對話的開端。
\n
\n
\n 教練也是關鍵的角色,協助迴響計畫有方法的「以使用者為中心」
\n 通常如果行動者參加到一個不太適合的計畫,可能會直接在初期選擇離開,或者是低參與的完成計畫,而低度參與時,參加者也不會覺得自己有資格給予回饋,教練至少每 1-2 週會與團隊互動一次,能在第一線了解團隊真正遇到的狀況,也沒有「一定要團隊成功」的成果壓力,能真的站在團隊的處境思考,間接也讓主辦單位獲得如何改善的線索。
\n
\n
\n 這裡是迴響歷屆的教練,是每一屆的迴響能跑回本壘得分的關鍵
以此紀念迴響的最佳投捕組合,他們是這個計畫最前線的代言人,用行動接住每一個兩好三壞的時刻
\n 第一屆 黃閔駿、Jarah、Rax、姚瑞鵬、張庭嘉、李俊廷、巫曉涵
第二屆 白羽平、劉靜文、王鵬傑、梁藝瀠、黃閔駿、曹伊裴、薛名喨、鐘弘育、曾振皓、古展弦、簡瓅、姚瑞鵬、吳思璇、許翊勤
第三屆 王鵬傑、邱純慧、梁藝濚、鄭惠文、黃培陞、謝睿哲、張庭嘉、黃俊豪、姚瑞鵬、簡瓅、Jarah、吳威廷、劉靜文
第四屆 王鵬傑、姚瑞鵬、簡瓅、梁藝濚、鄭惠文、鍾孟翰、李晨馨、胡抽抽、陳ㄧ心、邱純慧、蕭仲恩、林鼎惟、劉昀瑄、雷文鳳、黃昱翔、鄭柏軒、謝璿
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-3.vue?vue&type=template&id=68778112&\"\nimport script from \"./s2-studio-3.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_3',\"isWhite\":true}},[_c('h3',[_vm._v(\"設計思考教練\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"設計思考教練,協助團隊將問題化為學習的機會\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響提供了許多行動的方法與工具,但是每個團隊都有不同的步調和風格,沒有一個完美的工具可以適用團隊所有的問題。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"設計思考教練團,是一群熟悉這些行動工具、會議引導技巧的小精靈,從實體活動大會師開始,每組會配對一位教練,第一線了解團隊困難,陪伴團隊將問題化為學習的機會、將衝突化為對話的開端。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"教練也是關鍵的角色,協助迴響計畫有方法的「以使用者為中心」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"通常如果行動者參加到一個不太適合的計畫,可能會直接在初期選擇離開,或者是低參與的完成計畫,而低度參與時,參加者也不會覺得自己有資格給予回饋,教練至少每 1-2 週會與團隊互動一次,能在第一線了解團隊真正遇到的狀況,也沒有「一定要團隊成功」的成果壓力,能真的站在團隊的處境思考,間接也讓主辦單位獲得如何改善的線索。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"這裡是迴響歷屆的教練,是每一屆的迴響能跑回本壘得分的關鍵\"),_c('br'),_vm._v(\"以此紀念迴響的最佳投捕組合,他們是這個計畫最前線的代言人,用行動接住每一個兩好三壞的時刻\")]),_vm._v(\" \"),_c('p',[_vm._v(\"第一屆 黃閔駿、Jarah、Rax、姚瑞鵬、張庭嘉、李俊廷、巫曉涵\"),_c('br'),_vm._v(\"第二屆 白羽平、劉靜文、王鵬傑、梁藝瀠、黃閔駿、曹伊裴、薛名喨、鐘弘育、曾振皓、古展弦、簡瓅、姚瑞鵬、吳思璇、許翊勤\"),_c('br'),_vm._v(\"第三屆 王鵬傑、邱純慧、梁藝濚、鄭惠文、黃培陞、謝睿哲、張庭嘉、黃俊豪、姚瑞鵬、簡瓅、Jarah、吳威廷、劉靜文\"),_c('br'),_vm._v(\"第四屆 王鵬傑、姚瑞鵬、簡瓅、梁藝濚、鄭惠文、鍾孟翰、李晨馨、胡抽抽、陳ㄧ心、邱純慧、蕭仲恩、林鼎惟、劉昀瑄、雷文鳳、黃昱翔、鄭柏軒、謝璿\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 任務包誕生的小故事
\n 任務包的誕生,是來自於一個「鼓勵行動的計畫」內生的矛盾,這樣的計畫,如果讓人提交計畫書之後,回覆說:「很抱歉,你沒有通過」的話,不是一開始就在否定行動嗎!?
\n
\n
\n 「不看計畫書的完整度,而是看你的行動力」
\n 不比誰會寫企劃,而是比誰能在時間內,最快、最頻繁的去行動,迴響很清楚,行動一定可以快速擴張對議題的想像,行動之後,通常團隊要做的事情也會修改許多。
\n 任務包的規則很單純,在截止時間之前可以無限次提交,每次提交,都會收到教練對任務的回饋,不通過的意思不是在跟你說你不行前進,而是提醒你哪裡還可以做得更好,不然下階段會很辛苦,你可以根據回饋修正後重新提交,通過後則可以看到下個任務挑戰。
\n
\n
\n 「邊做任務包,其實已經開始行動、學習」
\n 每年超過 100 組的行動團隊報名,但是迴響在實體活動的限制下,其實只 有 20-30 組能從任務包階段晉級,比起「篩選」,迴響更希望能在任務包階段就幫助「想行動卻沒有方法的團隊」前進,於是致力於提升任務包的「教學成分」,第三屆開始,每個任務變成線上課程,上完課就可以直接出發,即使最終沒有入選,其實也已經有成長和突破。
\n
\n
\n 「任務包的開始,本身也是一個最小可行的行動」
\n 一開始設計任務包是在兩件事情中取捨,到底是要寫的足夠有引導性,還是要打開一些自由度?寫得太過清楚,會讓大家行動解嗨,覺得只是按照指示寫作業交作業而已,寫得太開放,又擔心青年看不懂,因為說明太少而感到困惑,當時執行團隊中的這兩派擁護者分別用半個小時各自完成一份任務包的草案,拿給團隊中最沒有設計思考包袱的素人夥伴看看,獲得的回饋是兩份都很難據以採取行動。
\n 最終我們發現,任務包的重點不是文字的設計,而是互動和流程的設計,不管引導文字清楚還是模糊,要將任務包看成溝通的媒介而不是終點,要設計的是任務包的體驗流程,而非單純的文字。
\n 當焦點一轉移,本來對立的觀點,突然就可以在流程的不同階段體現各自在意的價值,慢慢因為歷屆青年的回饋,迭代成今天的任務包。
\n
\n
\n 註:
• 離開迴響後約有 69% 的青年再使用過任務包概念展開行動
• 離開迴響後,這些青年又多帶了約 5 倍數量給「沒參加過迴響的青年」一起使用任務包概念來面對不同議題,展開第一步行動
• 每年都會有不少組別,無論議題是甚麼,他們的第一步行動都是「設計一個任務包」,也算是體驗好有口碑的證明吧!
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-1-time-capsule.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-1-time-capsule.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-1-time-capsule.vue?vue&type=template&id=b53c60e4&\"\nimport script from \"./s2-studio-1-time-capsule.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-1-time-capsule.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_1_time_capsule'}},[_c('h3',[_vm._v(\"任務包誕生的小故事\")]),_vm._v(\" \"),_c('p',[_vm._v(\"任務包的誕生,是來自於一個「鼓勵行動的計畫」內生的矛盾,這樣的計畫,如果讓人提交計畫書之後,回覆說:「很抱歉,你沒有通過」的話,不是一開始就在否定行動嗎!?\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"「不看計畫書的完整度,而是看你的行動力」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不比誰會寫企劃,而是比誰能在時間內,最快、最頻繁的去行動,迴響很清楚,行動一定可以快速擴張對議題的想像,行動之後,通常團隊要做的事情也會修改許多。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"任務包的規則很單純,在截止時間之前可以無限次提交,每次提交,都會收到教練對任務的回饋,不通過的意思不是在跟你說你不行前進,而是提醒你哪裡還可以做得更好,不然下階段會很辛苦,你可以根據回饋修正後重新提交,通過後則可以看到下個任務挑戰。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"「邊做任務包,其實已經開始行動、學習」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每年超過 100 組的行動團隊報名,但是迴響在實體活動的限制下,其實只 有 20-30 組能從任務包階段晉級,比起「篩選」,迴響更希望能在任務包階段就幫助「想行動卻沒有方法的團隊」前進,於是致力於提升任務包的「教學成分」,第三屆開始,每個任務變成線上課程,上完課就可以直接出發,即使最終沒有入選,其實也已經有成長和突破。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"「任務包的開始,本身也是一個最小可行的行動」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一開始設計任務包是在兩件事情中取捨,到底是要寫的足夠有引導性,還是要打開一些自由度?寫得太過清楚,會讓大家行動解嗨,覺得只是按照指示寫作業交作業而已,寫得太開放,又擔心青年看不懂,因為說明太少而感到困惑,當時執行團隊中的這兩派擁護者分別用半個小時各自完成一份任務包的草案,拿給團隊中最沒有設計思考包袱的素人夥伴看看,獲得的回饋是兩份都很難據以採取行動。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最終我們發現,任務包的重點不是文字的設計,而是互動和流程的設計,不管引導文字清楚還是模糊,要將任務包看成溝通的媒介而不是終點,要設計的是任務包的體驗流程,而非單純的文字。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當焦點一轉移,本來對立的觀點,突然就可以在流程的不同階段體現各自在意的價值,慢慢因為歷屆青年的回饋,迭代成今天的任務包。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"註:\"),_c('br'),_vm._v(\"• 離開迴響後約有 69% 的青年再使用過任務包概念展開行動\"),_c('br'),_vm._v(\"• 離開迴響後,這些青年又多帶了約 5 倍數量給「沒參加過迴響的青年」一起使用任務包概念來面對不同議題,展開第一步行動\"),_c('br'),_vm._v(\"• 每年都會有不少組別,無論議題是甚麼,他們的第一步行動都是「設計一個任務包」,也算是體驗好有口碑的證明吧!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動迴圈小故事
\n 本文截錄自《行動旅人求生筆記》/作者 Jarah
\n 畫得比說的好聽
\n 「當你要和一個人說明一個複雜的概念時,永遠要學著用視覺化的方式溝通」。
\n 我記得有一次我們卡在一個地方好幾天了,一直沒辦法把行動的理論與計畫中的不同階段連結在一起,討論已經進行了一個多小時,還是沒有任何進展,我沮喪地坐在討論室裡面,突然想到我們也會在學院課程中告訴學員的事情:「溝通的時候,記得把想法視覺化」。
\n 所以我到走廊推了一個隔間牆,掛上一片白板,拿一支筆開始畫,雖然只有簡單的線條跟潦草的字,但我們似乎漸漸更掌握所有討論的內容:重要的不重要的、內容與內容之間的關係、還沒有回答的問題......當我們能夠「看見」之後,好像一切都開始變得清晰,與此同時,行動迴圈也成為三個階段(註1)演進的基礎理論。除了內部的討論溝通,視覺化的簡報也幫助我們到外面提案時,讓對方在短時間內理解計畫的相關規劃。
\n 印象深刻的一次是我和 Rax 兩個人到台大創意創業中心,與執行長曾正忠討論迴響計畫在創業孵化這一塊的相關性,也是透過視覺化的方式來做說明,執行長聽完之後,很明確地點出我們的定位應該著重在精實創業所提到三個階段(註2)中的第一階段:問題/解決方案匹配(Problem Solution Fit),來幫助可能往後要創業的團隊做初步議題與構想的瞭解與驗證,因為這一塊的孵化在創業圈裡面比較少人耕耘,迴響計畫有其發揮的空間。
\n 這對我們來說是一個關鍵的時刻,因為有了這樣的談話,幫助我們離找出毛線頭又更近了一步。
\n
\n
\n 行動迴圈初期的發展歷程
\n
\n ▲ 終於依照行動迴圈、精實執行設計好迴響計畫的框架,那段時間每有機會就找一位前輩請教,這是在創創中心曾執行長辦公室,一邊手繪一邊解釋迴響計畫的紀錄。
\n
\n
\n ▲ 建構行動迴圈的初期,除了執著於迴圈本身的架構,也在思考每跑完一圈,下一階段代表甚麼意思。創辦階段的總召 Jarah 是很習慣圖像化思考的人,常常一邊畫圖、一邊討論。注意到了嗎?當年的行動迴圈架構非常簡單,只有行動跟目標而已。
\n
\n
\n ▲ 平面的迴圈在線性的計畫中,不好呈現層層推進、越做越深的概念,只好往立體的方向思考了。
\n
\n
\n 有方法,人們才容易跟上來
\n 回過頭來看,當初把迴響定位在「從想法到行動」,並且試圖從真實的訪談、各種理論(設計思考、 精實執行、 精實創業等)之中,建構出一套「強調行動」的基礎方法論是很正確的設定。
\n 因為逼迫自己用理論化的框架去思考,而非只是把它視為另一場創新創業活動,讓我們在整體的邏輯檢證、相關工具的使用上面,都更強調系統性。也因為有理論化,「把想法變行動」的這場呼籲才會有價值,若只是零散發生在片刻的行動,或許並不會被認為是可以嘗試、可以學習、甚至是一件重要的事情。
\n
\n
\n 註1:行動階段:行動迴圈一圈一圈的要轉去哪裡呢? 迴響根據團隊的發展階段,參考了精實創業的觀點,提供了基本的階段目標,從 Problem Validation 到 Product-Market fit,讓團隊可以有意識的前進。
註2:精實創業三個階段:為 Eric Ries 於《精實創業:用小實驗玩出大事業》這本書中提出的概念,說明一個新創事業應由 Problem-Solution Fit(問題與解法匹配)、Product-Market Fit (產品與市場匹配) 和 Scale(規模化)三個不同的階段組成。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-2-time-capsule.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-2-time-capsule.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-2-time-capsule.vue?vue&type=template&id=70658600&\"\nimport script from \"./s2-studio-2-time-capsule.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-2-time-capsule.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_2_time_capsule'}},[_c('h3',[_vm._v(\"行動迴圈小故事\")]),_vm._v(\" \"),_c('p',{staticClass:\"note\"},[_vm._v(\"本文截錄自\"),_c('a',{attrs:{\"href\":\"https://issuu.com/jarahchou/docs/_____191007____27.3m___\",\"target\":\"_blank\"}},[_vm._v(\"《行動旅人求生筆記》\")]),_vm._v(\"/作者 Jarah\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"畫得比說的好聽\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「當你要和一個人說明一個複雜的概念時,永遠要學著用視覺化的方式溝通」。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我記得有一次我們卡在一個地方好幾天了,一直沒辦法把行動的理論與計畫中的不同階段連結在一起,討論已經進行了一個多小時,還是沒有任何進展,我沮喪地坐在討論室裡面,突然想到我們也會在學院課程中告訴學員的事情:「溝通的時候,記得把想法視覺化」。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"所以我到走廊推了一個隔間牆,掛上一片白板,拿一支筆開始畫,雖然只有簡單的線條跟潦草的字,但我們似乎漸漸更掌握所有討論的內容:重要的不重要的、內容與內容之間的關係、還沒有回答的問題......當我們能夠「看見」之後,好像一切都開始變得清晰,與此同時,行動迴圈也成為三個階段(註1)演進的基礎理論。除了內部的討論溝通,視覺化的簡報也幫助我們到外面提案時,讓對方在短時間內理解計畫的相關規劃。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"印象深刻的一次是我和 Rax 兩個人到台大創意創業中心,與執行長曾正忠討論迴響計畫在創業孵化這一塊的相關性,也是透過視覺化的方式來做說明,執行長聽完之後,很明確地點出我們的定位應該著重在精實創業所提到三個階段(註2)中的第一階段:問題/解決方案匹配(Problem Solution Fit),來幫助可能往後要創業的團隊做初步議題與構想的瞭解與驗證,因為這一塊的孵化在創業圈裡面比較少人耕耘,迴響計畫有其發揮的空間。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這對我們來說是一個關鍵的時刻,因為有了這樣的談話,幫助我們離找出毛線頭又更近了一步。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"行動迴圈初期的發展歷程\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/studio_2_time_capsule-1.png\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"▲ 終於依照行動迴圈、精實執行設計好迴響計畫的框架,那段時間每有機會就找一位前輩請教,這是在創創中心曾執行長辦公室,一邊手繪一邊解釋迴響計畫的紀錄。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/studio_2_time_capsule-2.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"▲ 建構行動迴圈的初期,除了執著於迴圈本身的架構,也在思考每跑完一圈,下一階段代表甚麼意思。創辦階段的總召 Jarah 是很習慣圖像化思考的人,常常一邊畫圖、一邊討論。注意到了嗎?當年的行動迴圈架構非常簡單,只有行動跟目標而已。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/studio_2_time_capsule-3.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('p',[_vm._v(\"▲ 平面的迴圈在線性的計畫中,不好呈現層層推進、越做越深的概念,只好往立體的方向思考了。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"有方法,人們才容易跟上來\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"回過頭來看,當初把迴響定位在「從想法到行動」,並且試圖從真實的訪談、各種理論(設計思考、 精實執行、 精實創業等)之中,建構出一套「強調行動」的基礎方法論是很正確的設定。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"因為逼迫自己用理論化的框架去思考,而非只是把它視為另一場創新創業活動,讓我們在整體的邏輯檢證、相關工具的使用上面,都更強調系統性。也因為有理論化,「把想法變行動」的這場呼籲才會有價值,若只是零散發生在片刻的行動,或許並不會被認為是可以嘗試、可以學習、甚至是一件重要的事情。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"註1:行動階段:行動迴圈一圈一圈的要轉去哪裡呢? 迴響根據團隊的發展階段,參考了精實創業的觀點,提供了基本的階段目標,從 Problem Validation 到 Product-Market fit,讓團隊可以有意識的前進。\"),_c('br'),_vm._v(\"註2:精實創業三個階段:為 Eric Ries 於\"),_c('a',{attrs:{\"href\":\"https://www.google.com/search?q=%E7%B2%BE%E5%AF%A6%E5%89%B5%E6%A5%AD+%E7%94%A8%E5%B0%8F%E5%AF%A6%E9%A9%97%E7%8E%A9%E5%87%BA%E5%A4%A7%E4%BA%8B%E6%A5%AD\",\"target\":\"_blank\"}},[_vm._v(\"《精實創業:用小實驗玩出大事業》\")]),_vm._v(\"這本書中提出的概念,說明一個新創事業應由 Problem-Solution Fit(問題與解法匹配)、Product-Market Fit (產品與市場匹配) 和 Scale(規模化)三個不同的階段組成。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 關於便利貼
\n 本文截錄自《行動旅人求生筆記》/作者 Jarah
\n 便利貼之上,人人平等
\n 便利貼是我們在團隊討論時很常用到的一個工具,最主要的原因是,只要想法被寫在了便利貼上面,就沒有誰講話更有份量、誰講話比較大聲的問題。當便利貼被貼到牆上之後,所有想法就如同一幅畫在大家面前被展示,從此它便不會消失。更好的是,便利貼上面的重複貼黏膠讓你能夠移動它,將想法做不同的排列組合,提供一個幫助團隊共同思考和架構的過程。
\n 我們也將這樣的技巧告訴所有的參與團隊,希望能默默融入進他們自己討論的過程中,像是在一階行動期間在南北各舉辦一場的迴響之夜,我們帶了許多便利貼到現場帶大家一起實作腦力激盪;或是在衝刺之夜的時候放在現場供團隊取用;二階行動期間各組的設計思考教練也會使用便利貼,幫助團隊釐清目前所遇到的困難。一步一步都是希望讓團隊可以慢慢熟悉、學習便利貼的使用。
\n 事後採訪「最後一個晚安」時,團隊曾經說他們以往不曾發現便利貼這麼好用,甚至在衝刺之夜的時候,心裡還小小OS:「有需要用到這麼多便利貼嗎?」,但後來發現真的很好用。便利貼讓每個人都能夠發表自己的想法,不會因為團員主動發言的傾向而受影響(像鈺淳和亭儀是會比較主動說話的人,子晴相對話比較少,所以我們常常討論的時候比較容易忽略掉子晴,導致她就在旁邊默默當個美男子XD)。
\n 將便利貼貼到牆上後,每個人就上面的內容發言,就算是設計思考中所謂發散的過程,都分享完之後就知道「喔!那現在應該要開始收斂」,越來越懂得掌握團隊討論的節奏。團隊從一開始不會用、亂貼一通,到教練前往團隊所在地——高雄,在咖啡廳的一面黑牆上帶著大家實際使用,慢慢地熟悉它的操作方式。
\n 話說回來,迴響在第二年應該會開發一門「如何正確使用便利貼」的課程,這不是玩笑話,你眼中拿來留言請室友幫忙買便當的便利貼,在視覺化討論的領域中,其實是一門頗有內容的學問。到時如果有確認公開的教學資源,我們也會在網站或粉專上讓大家知道,就敬請追蹤囉!
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-3-time-capsule.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-studio-3-time-capsule.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-studio-3-time-capsule.vue?vue&type=template&id=710e47aa&\"\nimport script from \"./s2-studio-3-time-capsule.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-studio-3-time-capsule.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_studio_3_time_capsule'}},[_c('h3',[_vm._v(\"關於便利貼\")]),_vm._v(\" \"),_c('p',{staticClass:\"note\"},[_vm._v(\"本文截錄自\"),_c('a',{attrs:{\"href\":\"https://issuu.com/jarahchou/docs/_____191007____27.3m___\",\"target\":\"_blank\"}},[_vm._v(\"《行動旅人求生筆記》\")]),_vm._v(\"/作者 Jarah\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"便利貼之上,人人平等\")]),_vm._v(\" \"),_c('p',[_vm._v(\"便利貼是我們在團隊討論時很常用到的一個工具,最主要的原因是,只要想法被寫在了便利貼上面,就沒有誰講話更有份量、誰講話比較大聲的問題。當便利貼被貼到牆上之後,所有想法就如同一幅畫在大家面前被展示,從此它便不會消失。更好的是,便利貼上面的重複貼黏膠讓你能夠移動它,將想法做不同的排列組合,提供一個幫助團隊共同思考和架構的過程。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們也將這樣的技巧告訴所有的參與團隊,希望能默默融入進他們自己討論的過程中,像是在一階行動期間在南北各舉辦一場的迴響之夜,我們帶了許多便利貼到現場帶大家一起實作腦力激盪;或是在衝刺之夜的時候放在現場供團隊取用;二階行動期間各組的設計思考教練也會使用便利貼,幫助團隊釐清目前所遇到的困難。一步一步都是希望讓團隊可以慢慢熟悉、學習便利貼的使用。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"事後採訪「最後一個晚安」時,團隊曾經說他們以往不曾發現便利貼這麼好用,甚至在衝刺之夜的時候,心裡還小小OS:「有需要用到這麼多便利貼嗎?」,但後來發現真的很好用。便利貼讓每個人都能夠發表自己的想法,不會因為團員主動發言的傾向而受影響(像鈺淳和亭儀是會比較主動說話的人,子晴相對話比較少,所以我們常常討論的時候比較容易忽略掉子晴,導致她就在旁邊默默當個美男子XD)。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"將便利貼貼到牆上後,每個人就上面的內容發言,就算是設計思考中所謂發散的過程,都分享完之後就知道「喔!那現在應該要開始收斂」,越來越懂得掌握團隊討論的節奏。團隊從一開始不會用、亂貼一通,到教練前往團隊所在地——高雄,在咖啡廳的一面黑牆上帶著大家實際使用,慢慢地熟悉它的操作方式。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"話說回來,迴響在第二年應該會開發一門「如何正確使用便利貼」的課程,這不是玩笑話,你眼中拿來留言請室友幫忙買便當的便利貼,在視覺化討論的領域中,其實是一門頗有內容的學問。到時如果有確認公開的教學資源,我們也會在網站或粉專上讓大家知道,就敬請追蹤囉!\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/studio_3_time_capsule.jpg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n 密林深處有一塊空地,光線恰到好處,飛鳥魚獸都在聽
\n 聽我們談談迴響當年的行動提案:「我們如何讓採取行動變成一件自然而然的事情」。\n
\n
\n
\n\n 我們看到的問題
\n 社會議題看似完全無法解決的惡性循環
\n 每個人都有這種時刻,看到了一些自己的可能性,很快的會因為現實的壓力、限制、機會成本而停止探索。這種事情在面對社會議題時,會有更大的阻力,會覺得自己更做不到些什麼事情,當這個開始變的越來越困難,整個社會回應公共議題的力道就會降低,因為我們看問題的觀點、提出階段性解法的人才、提出多元解方的人才都會受限,從而創造了「社會議題看似完全無法解決」的惡性循環。
\n
\n
\n\n 我們認為問題的成因
\n 行動的預期投資報酬率太低
\n 然而,現階段,鼓勵青年把想法變成行動,太沒有投資報酬率,離真正可見的改變,還有一段距離。做這件事情的價值和效益不容易被衡量,所以不容易找到願意單純贊助這件事情發生的資源擁有者。當大家的關注點都是成果時,開始的實驗、試錯、可笑但對個人發展或議題發展而言重要的成果,其價值就會被低估,進而被忽略。
\n
\n
\n\n 如果這個問題不解決,會有什麼後果?
\n 掌握資源的人嘗試成本大,但社會需要各個層面的推動
\n 於是乎,很多創新,都只能仰賴天時地利人和、機緣。而不是有系統、有階段的被推動出來。這會造成另一個問題,就是好像只有掌握巨大資源的人才能做出改變,但掌握巨大資源的人改變的機會成本過高,採取行動常常需要雷聲很大,面對系統性的問題時,卻不是靠一聲很大的雷聲來解決的,而是各個層面都有一定程度的變革和創新,於是,台灣這個社會,常常有很多單次故事,卻很少持續推動的變革。
\n
\n
\n
\n\n 在這個議題下,我們想先聚焦在...
\n 建立行動的正向迴圈
\n 當這個社會有越來越多青年勇於對社會議題展開行動,就有越來越多大議題下的小面向浮現,這些問題都不小,但沒有大到足以吸引主流社會的關注,於是他們都還有改善的空間,也就還有值得探索和行動的空間:
\n 浪犬議題下的飼主教育、無家者議題下的月經貧窮、地方議題下的牛車文化保存、兩性議題下的父親育兒、環保議題下的港口垃圾...
\n 還有好多好多看起來好像很大,似乎距離我們很遠的議題,像一道超大的牆,根本想像不到有越過去的一日。然而,一旦真的走近,就會發現一些我們其實可以施力的點,踏著這些點慢慢往上爬,就有機會被更多人看見。當這些議題被展開,我們就打開了一條新的路徑,原本覺得與議題毫不相干的青年,也有機會看到自己可以施力的地方,於是跟著一起爬了起來。
\n
\n
\n\n 我們覺得可行的解決方案...
\n 行動的雪球效應
\n 行動有機會成本,但也有機會效益,其實也不是什麼機會效益,就是機會而已。一個看的更遠、找到夥伴、爬的更好的機會,當然過程中還是會有力量不夠,構不著下一個岩點的時刻,此時只要與議題貼的更近就好,像開始時那樣,總會有我們可以施力的地方。
\n 行動的數量變多,案例也會變多,迴響提供的方法論、教練和行動工具,也會發展得越來越完整。當有一天關注這些議題的青年們,數量變的更多了,因為投入而能夠清楚地說出自己的故事時,大人、掌握資源的人就會看到,也願意下來一起幫忙。
\n
\n
\n\n 想像這個問題被解決後的理想社會...
\n 然後就別再繞圈圈了,還是回到自己吧...
\n 當我們連對社會議題都能乾脆的起而行,都能知道要運用哪些工具,都會懂得鼓勵身邊的人嘗試時,我們就會更有信心,在面對自己的議題,在做自己真的想做的事情,並且,在過程中更認識我們自己。等到這個社會上的每一個人,都清楚找到屬於他們的位置時,我們就會放下要攻擊他者、要詆毀別人的暴力,知道我們在這裡,我們附近還有誰,我們都需要彼此幫助,一起努力。
\n 我們期待迴響能用我們的行動方法和陪伴青年動起來的經驗,成為促成這個變革的一份子,現在看起來有點天方夜譚,像憑空變個理論出來,但如果你也同意,跟著一起行動了,這裡的故事,就會真的成為我們的變革理論。
\n
\n
\n
\n\n 我們與這個問題的關係是...
\n 因為我們也是正在行動的人
\n 不管你在那個年紀,心裡都有一個青年時的自己吧?你是什麼樣的青年呢?我想你一定考慮很多未來的事情,一定也有一些放在抽屜或電腦資料夾裡,寫的完整卻還沒有行動的「計畫」。
\n 不過,迴響做到第四年,從這天往回看,點開第一年時的企劃書,發現我們真的做到了,當時寫起來會被視為多麼天真的事情,像空的格子一一被更美好的故事塗滿,這種爽快真想分享給你。行動、試著做做看,真得很困難,沒有人認同的時候、太過在意的時候,又更困難,但...算了,給你決定。
\n 最後,如果你真的起步了,無論走到哪裡,我們都希望你可以偶爾,為那些剛開始的人打氣,包容他們犯下的錯誤,擁抱那些與你想法不同的可能性,因為我們是如此幸運,可以依靠身邊的人的包容、支持、不孤單的走到這裡。
\n 迴響的影響力報告書,看起來好像是想要證明我們做了多麼了不得的事情,其實那是我們給我們自己的打氣、給曾經參與過迴響的朋友的打氣,希望他們都知道,我們還在努力。如果迴響是一個禮物,真想送給你。
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-theory-of-change.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-theory-of-change.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-theory-of-change.vue?vue&type=template&id=23c0b276&\"\nimport script from \"./s2-theory-of-change.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-theory-of-change.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_theory_of_change'}},[_c('p',[_vm._v(\"\\n 密林深處有一塊空地,光線恰到好處,飛鳥魚獸都在聽\"),_c('br'),_vm._v(\"\\n 聽我們談談迴響當年的行動提案:「我們如何讓採取行動變成一件自然而然的事情」。\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"我們看到的問題\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"社會議題看似完全無法解決的惡性循環\")]),_vm._v(\" \"),_c('p',[_vm._v(\"每個人都有這種時刻,看到了一些自己的可能性,很快的會因為現實的壓力、限制、機會成本而停止探索。這種事情在面對社會議題時,會有更大的阻力,會覺得自己更做不到些什麼事情,當這個開始變的越來越困難,整個社會回應公共議題的力道就會降低,因為我們看問題的觀點、提出階段性解法的人才、提出多元解方的人才都會受限,從而創造了「社會議題看似完全無法解決」的惡性循環。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"我們認為問題的成因\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"行動的預期投資報酬率太低\")]),_vm._v(\" \"),_c('p',[_vm._v(\"然而,現階段,鼓勵青年把想法變成行動,太沒有投資報酬率,離真正可見的改變,還有一段距離。做這件事情的價值和效益不容易被衡量,所以不容易找到願意單純贊助這件事情發生的資源擁有者。當大家的關注點都是成果時,開始的實驗、試錯、可笑但對個人發展或議題發展而言重要的成果,其價值就會被低估,進而被忽略。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"如果這個問題不解決,會有什麼後果?\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"掌握資源的人嘗試成本大,但社會需要各個層面的推動\")]),_vm._v(\" \"),_c('p',[_vm._v(\"於是乎,很多創新,都只能仰賴天時地利人和、機緣。而不是有系統、有階段的被推動出來。這會造成另一個問題,就是好像只有掌握巨大資源的人才能做出改變,但掌握巨大資源的人改變的機會成本過高,採取行動常常需要雷聲很大,面對系統性的問題時,卻不是靠一聲很大的雷聲來解決的,而是各個層面都有一定程度的變革和創新,於是,台灣這個社會,常常有很多單次故事,卻很少持續推動的變革。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/s2_theory_of_change.png\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"在這個議題下,我們想先聚焦在...\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"建立行動的正向迴圈\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當這個社會有越來越多青年勇於對社會議題展開行動,就有越來越多大議題下的小面向浮現,這些問題都不小,但沒有大到足以吸引主流社會的關注,於是他們都還有改善的空間,也就還有值得探索和行動的空間:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"浪犬議題下的飼主教育、無家者議題下的月經貧窮、地方議題下的牛車文化保存、兩性議題下的父親育兒、環保議題下的港口垃圾...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"還有好多好多看起來好像很大,似乎距離我們很遠的議題,像一道超大的牆,根本想像不到有越過去的一日。然而,一旦真的走近,就會發現一些我們其實可以施力的點,踏著這些點慢慢往上爬,就有機會被更多人看見。當這些議題被展開,我們就打開了一條新的路徑,原本覺得與議題毫不相干的青年,也有機會看到自己可以施力的地方,於是跟著一起爬了起來。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"我們覺得可行的解決方案...\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"行動的雪球效應\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動有機會成本,但也有機會效益,其實也不是什麼機會效益,就是機會而已。一個看的更遠、找到夥伴、爬的更好的機會,當然過程中還是會有力量不夠,構不著下一個岩點的時刻,此時只要與議題貼的更近就好,像開始時那樣,總會有我們可以施力的地方。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動的數量變多,案例也會變多,迴響提供的方法論、教練和行動工具,也會發展得越來越完整。當有一天關注這些議題的青年們,數量變的更多了,因為投入而能夠清楚地說出自己的故事時,大人、掌握資源的人就會看到,也願意下來一起幫忙。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"想像這個問題被解決後的理想社會...\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"然後就別再繞圈圈了,還是回到自己吧...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當我們連對社會議題都能乾脆的起而行,都能知道要運用哪些工具,都會懂得鼓勵身邊的人嘗試時,我們就會更有信心,在面對自己的議題,在做自己真的想做的事情,並且,在過程中更認識我們自己。等到這個社會上的每一個人,都清楚找到屬於他們的位置時,我們就會放下要攻擊他者、要詆毀別人的暴力,知道我們在這裡,我們附近還有誰,我們都需要彼此幫助,一起努力。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"我們期待迴響能用我們的行動方法和陪伴青年動起來的經驗,成為促成這個變革的一份子,現在看起來有點天方夜譚,像憑空變個理論出來,但如果你也同意,跟著一起行動了,這裡的故事,就會真的成為我們的變革理論。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":\"\",\"alt\":\"\"}}),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"我們與這個問題的關係是...\")]),_vm._v(\" \"),_c('h4',[_vm._v(\"因為我們也是正在行動的人\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不管你在那個年紀,心裡都有一個青年時的自己吧?你是什麼樣的青年呢?我想你一定考慮很多未來的事情,一定也有一些放在抽屜或電腦資料夾裡,寫的完整卻還沒有行動的「計畫」。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不過,迴響做到第四年,從這天往回看,點開第一年時的企劃書,發現我們真的做到了,當時寫起來會被視為多麼天真的事情,像空的格子一一被更美好的故事塗滿,這種爽快真想分享給你。行動、試著做做看,真得很困難,沒有人認同的時候、太過在意的時候,又更困難,但...算了,給你決定。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最後,如果你真的起步了,無論走到哪裡,我們都希望你可以偶爾,為那些剛開始的人打氣,包容他們犯下的錯誤,擁抱那些與你想法不同的可能性,因為我們是如此幸運,可以依靠身邊的人的包容、支持、不孤單的走到這裡。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的影響力報告書,看起來好像是想要證明我們做了多麼了不得的事情,其實那是我們給我們自己的打氣、給曾經參與過迴響的朋友的打氣,希望他們都知道,我們還在努力。如果迴響是一個禮物,真想送給你。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 加速行動中
\n 有些團隊在迴響期間,除了感受到個人對議題、團隊的強烈動機,也找到明確的議題切入點,以正職投入程度,成立協會、公司來讓自己可以持續影響議題的一部分,在過程中持續累積品牌,讓自己逐漸能與其他資源連結。
\n
\n
\n
\n 2018 Date Myself
\n 最初的提案是:「我們如何能夠讓人自發性地,發出正確的、可被解讀的求救信號?」
\n 其實團隊最初的構想,是希望可以製作一個網站,讓人有需要的時候可以找到心理相關的資源,但在行動的過程,團隊發現缺乏的並不是資源,而是有些人甚至「不知道自己有需求、不知道可以開口」,於是結合成員書寫的專業,邀請大家把時間留給自己:Date Myself。
\n 在迴響期間共實驗了四場活動,更確立了重要的行動洞察:當人們開口前或後,最重要的不是引薦給哪個單位,或是給予立即的建議和幫助,最重要的是在建立信任後,「同理」、「聆聽」,就是最好接住當事人的方法。
\n 參加迴響計畫,本來只是待業中的一個小嘗試,現在品牌靈魂君芃還是嘗試不同的異業合作、活動、產品...來持續讓更多人和自己對話、關注自己的心理需求。
\n
\n
\n
\n 像這樣的團隊,還有 2019 小紅帽、2017 浪犬博士...
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-1.vue?vue&type=template&id=adf29e7e&\"\nimport script from \"./s2-team-type-tree-1.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_1',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"加速行動中\")]),_vm._v(\" \"),_c('p',[_vm._v(\"有些團隊在迴響期間,除了感受到個人對議題、團隊的強烈動機,也找到明確的議題切入點,以正職投入程度,成立協會、公司來讓自己可以持續影響議題的一部分,在過程中持續累積品牌,讓自己逐漸能與其他資源連結。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"2018 Date Myself\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最初的提案是:「我們如何能夠讓人自發性地,發出正確的、可被解讀的求救信號?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"其實團隊最初的構想,是希望可以製作一個網站,讓人有需要的時候可以找到心理相關的資源,但在行動的過程,團隊發現缺乏的並不是資源,而是有些人甚至「不知道自己有需求、不知道可以開口」,於是結合成員書寫的專業,邀請大家把時間留給自己:Date Myself。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在迴響期間共實驗了四場活動,更確立了重要的行動洞察:當人們開口前或後,最重要的不是引薦給哪個單位,或是給予立即的建議和幫助,最重要的是在建立信任後,「同理」、「聆聽」,就是最好接住當事人的方法。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"參加迴響計畫,本來只是待業中的一個小嘗試,現在品牌靈魂君芃還是嘗試不同的異業合作、活動、產品...來持續讓更多人和自己對話、關注自己的心理需求。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"像這樣的團隊,還有 2019 小紅帽、2017 浪犬博士...\")]),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 選擇停下來
\n 行動後,更看清世界真正的樣子,發現實在是太難了,現在暫時沒辦法用兩三個人的行動就促成什麼變化。行動不是責任,不行動也不是逃避,只是重新呼應當下的內心,還有其他也想要投入的事情。
\n
\n
\n
\n 2019 醫起針自由
\n 最初的提案是:「我們如何能在夜間幫助需要注射藥品的病患度過難關?」
\n 團隊以個人經驗提案,家中有慢性病患者,有臨時注射藥物的需求,但注射的動作,對患者和家人來說,可能有操作上的挑戰或心理上的壓力,是團隊成員日常面對的困境。
\n 在行動的過程中,團隊發現要影響這個議題,牽扯最大的是法規的挑戰。小規模的解決方案:希望可以媒合他人協助注射的點子,也會觸犯相關法律,無法執行。短時間可觸及到的病友協會、醫療單位,也沒有影響法規的管道或立場。
\n 行動之後,發現現有資訊與身份的條件下,找不到切入點,因此團隊選擇好好整理當下的經驗與學習即可,先停下腳步。
\n
\n
\n
\n 這類團隊樣貌目前佔迴響團隊的多數
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-2.vue?vue&type=template&id=095422e4&\"\nimport script from \"./s2-team-type-tree-2.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_2',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"選擇停下來\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動後,更看清世界真正的樣子,發現實在是太難了,現在暫時沒辦法用兩三個人的行動就促成什麼變化。行動不是責任,不行動也不是逃避,只是重新呼應當下的內心,還有其他也想要投入的事情。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"2019 醫起針自由\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最初的提案是:「我們如何能在夜間幫助需要注射藥品的病患度過難關?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"團隊以個人經驗提案,家中有慢性病患者,有臨時注射藥物的需求,但注射的動作,對患者和家人來說,可能有操作上的挑戰或心理上的壓力,是團隊成員日常面對的困境。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在行動的過程中,團隊發現要影響這個議題,牽扯最大的是法規的挑戰。小規模的解決方案:希望可以媒合他人協助注射的點子,也會觸犯相關法律,無法執行。短時間可觸及到的病友協會、醫療單位,也沒有影響法規的管道或立場。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"行動之後,發現現有資訊與身份的條件下,找不到切入點,因此團隊選擇好好整理當下的經驗與學習即可,先停下腳步。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"這類團隊樣貌目前佔迴響團隊的多數\")]),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 接棒發揮影響力
\n 在行動的過程中,發展出議題有趣也有效的解決方式,讓合作單位看到創新的可能性。對團隊來說,短期職涯還有其他的選擇,讓更有資源、更專業的人把方案接續下去,其實對議題會有更大的幫助。
\n
\n
\n
\n 2018 Dadable
\n 最初的提案是:「我們如何能夠讓爸爸多參與育兒的過程,改善家庭中不平均的家務分工?」
\n 其實團隊失敗多次,最終才找到兩個有趣的切入點,分別是「父親育兒攝影展」來提升更多爸爸參與這個議題、「諮商、社群等等父親的支持系統」來協助經驗的傳承以及情緒上的支持。團隊有 1-2 次小型的行動實驗了解到這些解方是有潛力的。
\n 雖然行動有好的成果,但兩位成員在大四的人生階段,還想多方嘗試、有求職壓力,最終將點子分別交接給過程中認識的合作單位,由婦女權益基金會持續辦理父親育兒攝影展、而城男舊事心驛站也針對育兒父親提供相關的服務與活動,將點子持續經營下去。
\n 在階段性任務完成後,團隊後來為另一個在乎的議題展開行動,成立 DOXA 哲學豆沙,提供國小到高中的哲學思辨課程,希望提供大家「能認識、暢談哲學問題」的空間
\n
\n
\n
\n \n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-3.vue?vue&type=template&id=16eaf794&\"\nimport script from \"./s2-team-type-tree-3.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_3',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"接棒發揮影響力\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在行動的過程中,發展出議題有趣也有效的解決方式,讓合作單位看到創新的可能性。對團隊來說,短期職涯還有其他的選擇,讓更有資源、更專業的人把方案接續下去,其實對議題會有更大的幫助。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"2018 Dadable\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最初的提案是:「我們如何能夠讓爸爸多參與育兒的過程,改善家庭中不平均的家務分工?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"其實團隊失敗多次,最終才找到兩個有趣的切入點,分別是「父親育兒攝影展」來提升更多爸爸參與這個議題、「諮商、社群等等父親的支持系統」來協助經驗的傳承以及情緒上的支持。團隊有 1-2 次小型的行動實驗了解到這些解方是有潛力的。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"雖然行動有好的成果,但兩位成員在大四的人生階段,還想多方嘗試、有求職壓力,最終將點子分別交接給過程中認識的合作單位,由婦女權益基金會持續辦理父親育兒攝影展、而城男舊事心驛站也針對育兒父親提供相關的服務與活動,將點子持續經營下去。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在階段性任務完成後,團隊後來為另一個在乎的議題展開行動,成立 DOXA 哲學豆沙,提供國小到高中的哲學思辨課程,希望提供大家「能認識、暢談哲學問題」的空間\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n Side Project
\n 迴響不覺得都要辭去工作、全心投入,才叫做為自己的議題行動,在自己的人生中創造一個 Side Project 的空間,有時會長得大一點、有時小一點,對團隊來說更能平衡人生中的不同需求,也是迴響常見的樣貌。
\n
\n
\n
\n 2019 暗房裡的人
\n 最初的提案是:「我們如何能夠為受刑人和更生人在與社會之間建立一座可以相互溝通與理解的橋梁?」
\n 這是提案者與親戚間的真實議題,在迴響的過程中拜訪相關的基金會、矯正單位來了解議題的真實限制、在人生百味的重修舊好空間舉辦了小型展覽,除了讓觀展者有基礎可以同理更生人,也找到第一波的議題參與者,推出了「貓頭鷹送信計畫」,讓人能和受刑人建立書信關係,交換故事。對暗房裡的人來說,犯罪脈絡背後其實有許多故事與人性,而不是一群惡人。
\n 暗房裡的人離開迴響後正式成立協會,雖然成員都有自己的正職工作,但成員一樣投入非常多的時間,持續經營。
\n
\n
\n
\n 像這樣的團隊,還有 2018 SUS 750、2018 Money 好朋友、2018 Be There 不見不散、2019 找自己、2019 眾森、2019 波波研究室、2019 生活擺態、2019 smbes 詩門倍思...
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-4.vue?vue&type=template&id=85ff2680&\"\nimport script from \"./s2-team-type-tree-4.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_4',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"Side Project\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響不覺得都要辭去工作、全心投入,才叫做為自己的議題行動,在自己的人生中創造一個 Side Project 的空間,有時會長得大一點、有時小一點,對團隊來說更能平衡人生中的不同需求,也是迴響常見的樣貌。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"2019 暗房裡的人\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最初的提案是:「我們如何能夠為受刑人和更生人在與社會之間建立一座可以相互溝通與理解的橋梁?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這是提案者與親戚間的真實議題,在迴響的過程中拜訪相關的基金會、矯正單位來了解議題的真實限制、在人生百味的重修舊好空間舉辦了小型展覽,除了讓觀展者有基礎可以同理更生人,也找到第一波的議題參與者,推出了「貓頭鷹送信計畫」,讓人能和受刑人建立書信關係,交換故事。對暗房裡的人來說,犯罪脈絡背後其實有許多故事與人性,而不是一群惡人。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"暗房裡的人離開迴響後正式成立協會,雖然成員都有自己的正職工作,但成員一樣投入非常多的時間,持續經營。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"像這樣的團隊,還有 2018 SUS 750、2018 Money 好朋友、2018 Be There 不見不散、2019 找自己、2019 眾森、2019 波波研究室、2019 生活擺態、2019 smbes 詩門倍思...\")]),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 換個題目繼續動
\n 一個人當然可以有很多在乎的議題,在迴響的過程,除了議題的推進,更重要的也帶走了行動的工具。我們希望青年離開迴響後,遇到自己在乎的社會議題、生活挑戰、工作困境、內心渴望,都能以行動去回應、嘗試。
\n
\n
\n
\n
\n 2019 遠霧散去時我想起,後成立酵母菌
\n 原先提案為:「我們如何能夠幫助高中生審視在社團活動中獲得的成就與寶貴經驗,並將之延續?」
\n 迴響之中,暫時沒有找到明確的切入點,但兩人一樣持續嘗試不同的專案,最終雖然不是在做特定社會議題,但兩人都希望透過行動催化身旁的每個人,發酵並創造讓人躍躍欲試的新事物!
\n
\n
\n
\n
\n 像這樣的團隊還有:2018 Dadable,後成立「DOXA 哲學豆沙」,以及更多非正式的小行動在各處發生...
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-5.vue?vue&type=template&id=94944e88&\"\nimport script from \"./s2-team-type-tree-5.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_5',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"換個題目繼續動\")]),_vm._v(\" \"),_c('p',[_vm._v(\"一個人當然可以有很多在乎的議題,在迴響的過程,除了議題的推進,更重要的也帶走了行動的工具。我們希望青年離開迴響後,遇到自己在乎的社會議題、生活挑戰、工作困境、內心渴望,都能以行動去回應、嘗試。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"2019 遠霧散去時我想起,後成立酵母菌\")]),_vm._v(\" \"),_c('p',[_vm._v(\"原先提案為:「我們如何能夠幫助高中生審視在社團活動中獲得的成就與寶貴經驗,並將之延續?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響之中,暫時沒有找到明確的切入點,但兩人一樣持續嘗試不同的專案,最終雖然不是在做特定社會議題,但兩人都希望透過行動催化身旁的每個人,發酵並創造讓人躍躍欲試的新事物!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',{staticClass:\"t-center\"},[_vm._v(\"像這樣的團隊還有:2018 Dadable,後成立「DOXA 哲學豆沙」,以及更多非正式的小行動在各處發生...\")]),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 一起迴響
\n 「我們如何能讓更多青年為自己在意的事展開行動?」其實每年迴響都會收到...跟迴響一樣的提案。在迴響的過程中,其實有些行動者會慢慢變成我們的朋友,慢慢的也會認識到生活、工作的其他面向,後來互相邀請,成為迴響的團隊。
\n 對有些人來說,他也想要讓更多人可以感受到迴響當初帶給他的體驗,也有些人,是對迴響的工作模式感到興趣。對迴響來說,也希望迴響最終變成一個大社群,行動者們彼此照應,一起做著各式各樣有趣的事情。
\n
\n
\n 2017 浪犬博士行動夥伴 Lucy、2017 參與任務包 力堃、2017 志工 Sara、2017 志工 高雯、2017 水地圖 周穎、2018 Date Myself 君芃、2018 Be There 不見不散 Piske、2018 解憂咖啡館 杜蒨妮、2018 Dadable 謝璿...
\n 這些人後來都在迴響的執行團隊一起工作過。
\n
\n
\n
\n \n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-6.vue?vue&type=template&id=673b428d&\"\nimport script from \"./s2-team-type-tree-6.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_6',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"一起迴響\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「我們如何能讓更多青年為自己在意的事展開行動?」其實每年迴響都會收到...跟迴響一樣的提案。在迴響的過程中,其實有些行動者會慢慢變成我們的朋友,慢慢的也會認識到生活、工作的其他面向,後來互相邀請,成為迴響的團隊。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"對有些人來說,他也想要讓更多人可以感受到迴響當初帶給他的體驗,也有些人,是對迴響的工作模式感到興趣。對迴響來說,也希望迴響最終變成一個大社群,行動者們彼此照應,一起做著各式各樣有趣的事情。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"2017 浪犬博士行動夥伴 Lucy、2017 參與任務包 力堃、2017 志工 Sara、2017 志工 高雯、2017 水地圖 周穎、2018 Date Myself 君芃、2018 Be There 不見不散 Piske、2018 解憂咖啡館 杜蒨妮、2018 Dadable 謝璿...\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些人後來都在迴響的執行團隊一起工作過。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 團隊樣貌
\n
\n 擦肩而過
\n 這些團隊曾經參加過迴響,但因為總總原因,迴響當初沒有足夠的能力來看到這些團隊的堅持與潛力,未來也還是可能會有其他遺珠之憾。這些團隊沒有停止行動,反而走得更遠、帶來更多的影響。應該還有更多更多曾經參與迴響的團隊還不曾相認過,祝福你們在行動的路上持續有好事發生。
\n
\n
\n
\n 2017 衣服圖書館:「我們如何讓購買二手衣成為選擇,減少新衣購買量?」
\n 2017 金魚腦:「我們如何能從早午餐店開始改善使用塑膠吸管的習慣?」
\n 2019 逆風劇團:「我們如何能夠讓非行青少年重返社群?」
\n 2020 雞湯來了:「我們如何能讓臺灣的年輕人與家人開啟對話、促進溝通?」
\n
\n
\n
\n \n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./s2-team-type-tree-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./s2-team-type-tree-7.vue?vue&type=template&id=26353137&\"\nimport script from \"./s2-team-type-tree-7.vue?vue&type=script&lang=js&\"\nexport * from \"./s2-team-type-tree-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'s2_team_type_tree_7',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"團隊樣貌\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h3',[_vm._v(\"擦肩而過\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這些團隊曾經參加過迴響,但因為總總原因,迴響當初沒有足夠的能力來看到這些團隊的堅持與潛力,未來也還是可能會有其他遺珠之憾。這些團隊沒有停止行動,反而走得更遠、帶來更多的影響。應該還有更多更多曾經參與迴響的團隊還不曾相認過,祝福你們在行動的路上持續有好事發生。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"2017 衣服圖書館:「我們如何讓購買二手衣成為選擇,減少新衣購買量?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"2017 金魚腦:「我們如何能從早午餐店開始改善使用塑膠吸管的習慣?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"2019 逆風劇團:「我們如何能夠讓非行青少年重返社群?」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"2020 雞湯來了:「我們如何能讓臺灣的年輕人與家人開啟對話、促進溝通?」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n
\n
\n 如果你想「看見」議題⋯
\n \n • 追蹤暗房裡的人,定期會發布許多議題小補帖!(包含受刑/更生人故事、議題知識等)
\n • 影迷們推薦:Gordon Ramsay地獄廚神之監獄風雲、噬罪者、我們與惡的距離、我的兒子是死刑犯、惡之畫、鹹水雞的滋味\n
\n
\n
\n 如果你想「同理」這群人⋯
\n \n • 看到犯罪新聞報導、產生情緒前,先想一下:為什麼他會犯罪?
\n • 聽到「更生人」這個詞時,先不要急著面露嫌惡、趕快逃走,你可以把他當作一般的陌生人,若有機會的話,給予一句關心、一句好奇都可能成為他的力量!\n
\n
\n
\n 如果你想用「行動」參與議題⋯
\n \n • 參與監所關注小組所舉辦的通信計畫,與受刑人交個筆友、互相認識吧!
\n • 拜訪利伯他茲教育基金會所經營的社會企業,七品聚圓夢餐廳的更生大哥們非常友善呢~餐點也很好吃哦!
\n • 追蹤暗房裡的人 疫情更生路企劃,關心受到疫情影響的更生店家們\n
\n
\n
\n *以上資訊由迴響計畫 2019 暗房裡的人 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-1.vue?vue&type=template&id=44c5dff2&\"\nimport script from \"./team-1.vue?vue&type=script&lang=js&\"\nexport * from \"./team-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_1',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果你想「看見」議題⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 追蹤\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3klekUF\",\"target\":\"_blank\"}},[_vm._v(\"暗房裡的人\")]),_vm._v(\",定期會發布許多議題小補帖!(包含受刑/更生人故事、議題知識等)\"),_c('br'),_vm._v(\"\\n • 影迷們推薦:Gordon Ramsay地獄廚神之監獄風雲、噬罪者、我們與惡的距離、我的兒子是死刑犯、惡之畫、鹹水雞的滋味\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果你想「同理」這群人⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 看到犯罪新聞報導、產生情緒前,先想一下:為什麼他會犯罪?\"),_c('br'),_vm._v(\"\\n • 聽到「更生人」這個詞時,先不要急著面露嫌惡、趕快逃走,你可以把他當作一般的陌生人,若有機會的話,給予一句關心、一句好奇都可能成為他的力量!\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果你想用「行動」參與議題⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 參與\"),_c('a',{attrs:{\"href\":\"https://bit.ly/2VDcPXt\",\"target\":\"_blank\"}},[_vm._v(\"監所關注小組\")]),_vm._v(\"所舉辦的通信計畫,與受刑人交個筆友、互相認識吧!\"),_c('br'),_vm._v(\"\\n • 拜訪\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3eqZwjv\",\"target\":\"_blank\"}},[_vm._v(\"利伯他茲教育基金會\")]),_vm._v(\"所經營的社會企業,\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3erEHEz\",\"target\":\"_blank\"}},[_vm._v(\"七品聚圓夢餐廳\")]),_vm._v(\"的更生大哥們非常友善呢~餐點也很好吃哦!\"),_c('br'),_vm._v(\"\\n • 追蹤暗房裡的人 疫情更生路企劃,關心受到疫情影響的更生店家們\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 暗房裡的人 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 如果你想瞭解更多關於爸爸育兒的資訊,歡迎採取下列行動喔!
\n
\n
\n 查看相關數據:
\n \n • 2020年 信誼基金會 ⟪新世代爸爸育兒參與大調查⟫
\n • 財團法人婦女權益促進發展基金會 ⟪2020 回家吧育兒調查報告書⟫ 的研究結果\n
\n
\n
\n 日常行動:
\n \n • 查看部落客 隱藏角色 的臉書粉絲專頁,看爸爸作為主要照顧者的日常
\n • 查看 2019 年 ⟪爸比的育兒日常攝影展⟫ 線上展覽\n
\n
\n
\n 法律面:
\n • 可以多了解勞基法、性別就業平等法的相關條文,並以「懷孕歧視」、「友善生育職場」等關鍵字搜尋,閱讀更多深入報導與介紹。(以婦女新知基金會為例)
\n
\n
\n 心理面:
\n • 可以多認識男性諮商,了解現代男性在社會中所承受的壓力,以及重新重視男性的心理健康(以城男舊事心驛站為例)
\n
\n
\n *以上資訊由迴響計畫 2018 Dadable 爸爸大冒險 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-2.vue?vue&type=template&id=5cd00792&\"\nimport script from \"./team-2.vue?vue&type=script&lang=js&\"\nexport * from \"./team-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_2',\"isWhite\":true}},[_c('p',[_vm._v(\"如果你想瞭解更多關於爸爸育兒的資訊,歡迎採取下列行動喔!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"查看相關數據:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 2020年 信誼基金會\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3xLMrZR\",\"target\":\"_blank\"}},[_vm._v(\" ⟪新世代爸爸育兒參與大調查⟫ \")]),_c('br'),_vm._v(\"\\n • 財團法人婦女權益促進發展基金會\"),_c('a',{attrs:{\"href\":\"https://bit.ly/36IXbMF\",\"target\":\"_blank\"}},[_vm._v(\" ⟪2020 回家吧育兒調查報告書⟫ \")]),_vm._v(\"的研究結果\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"日常行動:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • 查看部落客 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3rdYc8G\",\"target\":\"_blank\"}},[_vm._v(\"隱藏角色 的臉書粉絲專頁,看爸爸作為主要照顧者的日常\")]),_c('br'),_vm._v(\"\\n • 查看 2019 年\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3rbReRQ\",\"target\":\"_blank\"}},[_vm._v(\" ⟪爸比的育兒日常攝影展⟫ \")]),_vm._v(\"線上展覽\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"法律面:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 可以多了解勞基法、性別就業平等法的相關條文,並以「懷孕歧視」、「友善生育職場」等關鍵字搜尋,閱讀更多深入報導與介紹。(以\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3wMQvrg\",\"target\":\"_blank\"}},[_vm._v(\"婦女新知基金會\")]),_vm._v(\"為例)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"心理面:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 可以多認識男性諮商,了解現代男性在社會中所承受的壓力,以及重新重視男性的心理健康(以\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3rfMivd\",\"target\":\"_blank\"}},[_vm._v(\"城男舊事心驛站\")]),_vm._v(\"為例)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2018 Dadable 爸爸大冒險 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 首先,在聽到任何大學生的負面消息時,你可以⋯
\n • 停止第一時間的批判(eg現在大學生抗壓性都這麼低嗎?他是不是沒有見過世面?XX畢業有什麼用?)
\n • 相信大學生的群體是多元的,每個行為背後一定有個人、社會等多面向的成因
\n • 試著跳脫既有的理解,與認識的大學生開啟一段「開放」的對話,了解他的背景、所學、追求、煩惱⋯⋯簡單的對話就能為大學生帶來能量
\n
\n
\n 若想了解更多議題現況,你可以閱讀⋯
\n • 相關報導:報導者《強光下的暗憂-背負情緒隱傷的歌學業成就青年》專題
\n • 相關團隊:微亮計畫
\n
\n
\n *以上資訊由迴響計畫 2020 失敗練習 Warm up again 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-3.vue?vue&type=template&id=1e44cdae&\"\nimport script from \"./team-3.vue?vue&type=script&lang=js&\"\nexport * from \"./team-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_3',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"首先,在聽到任何大學生的負面消息時,你可以⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 停止第一時間的批判(eg現在大學生抗壓性都這麼低嗎?他是不是沒有見過世面?XX畢業有什麼用?)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 相信大學生的群體是多元的,每個行為背後一定有個人、社會等多面向的成因\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 試著跳脫既有的理解,與認識的大學生開啟一段「開放」的對話,了解他的背景、所學、追求、煩惱⋯⋯簡單的對話就能為大學生帶來能量\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"若想了解更多議題現況,你可以閱讀⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 相關報導:報導者\"),_c('a',{attrs:{\"href\":\"https://bit.ly/2UgKs0V\",\"target\":\"_blank\"}},[_vm._v(\"《強光下的暗憂-背負情緒隱傷的歌學業成就青年》\")]),_vm._v(\"專題\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 相關團隊:\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3ijzgsm\",\"target\":\"_blank\"}},[_vm._v(\"微亮計畫\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2020 失敗練習 Warm up again 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 如果想多認識自然及台灣這片土地,或想學習如何正確共好地接近山林:
\n 歡迎參與眾森的線下實體活動「來去山林住一晚」或「一日山林走走」,活動資訊會不定期公布再粉專上。
\n • 眾森 facebook
• 眾森 instagram
\n
\n
\n • 若自己想去山林或海邊從事戶外活動的時候,記得多上網做些功課,降低意外的風險,有不理解的也歡迎私訊粉專詢問我們,很樂意跟大家共同討論。
\n • 週末假日也可以嘗試去公園,脫下鞋子赤腳走在草地上,細細感受腳底與土壤與草地接觸的感覺,遇到樹木可以擁抱他或靜靜的坐在他底下,並將每一次的感受記錄下來,可以觀察每次感受的變化。
\n
\n
\n *以上資訊由迴響計畫 2019 眾森 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-4.vue?vue&type=template&id=6fb57043&\"\nimport script from \"./team-4.vue?vue&type=script&lang=js&\"\nexport * from \"./team-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_4',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果想多認識自然及台灣這片土地,或想學習如何正確共好地接近山林:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"歡迎參與眾森的線下實體活動「來去山林住一晚」或「一日山林走走」,活動資訊會不定期公布再粉專上。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://www.facebook.com/everybeing19/\",\"target\":\"_blank\"}},[_vm._v(\"眾森 facebook\")]),_c('br'),_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://www.instagram.com/everybeing19\",\"target\":\"_blank\"}},[_vm._v(\"眾森 instagram\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"• 若自己想去山林或海邊從事戶外活動的時候,記得多上網做些功課,降低意外的風險,有不理解的也歡迎私訊粉專詢問我們,很樂意跟大家共同討論。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 週末假日也可以嘗試去公園,脫下鞋子赤腳走在草地上,細細感受腳底與土壤與草地接觸的感覺,遇到樹木可以擁抱他或靜靜的坐在他底下,並將每一次的感受記錄下來,可以觀察每次感受的變化。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 眾森 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n
\n
\n 想了解更多月經議題,歡迎追蹤:
\n \n • 小紅帽 FB 粉專
\n • 小紅帽的 IG\n
\n
\n
\n 想更進一步參與月經的討論、時事分析、社群觀察,即刻加入:
\n \n • 小紅帽的紅粉聊天室,掌握最新活動消息與國際輿情!
\n • 第五季月經故事信箱《小紅帽月經故事電台》現正點播中,歡迎 Call in 你的月經故事\n
\n
\n
\n #月經就是月經,不是「大姨媽」、「好朋友」也不是「那個」,今天起,一起直接稱呼它吧!
\n
\n
\n *以上資訊由迴響計畫 2019 小紅帽 Little Red Hood 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-5.vue?vue&type=template&id=18c72e58&\"\nimport script from \"./team-5.vue?vue&type=script&lang=js&\"\nexport * from \"./team-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_5',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"想了解更多月經議題,歡迎追蹤:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3kvvsqZ\",\"target\":\"_blank\"}},[_vm._v(\"小紅帽 FB 粉專\")]),_c('br'),_vm._v(\"\\n • \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3z5Co1O\",\"target\":\"_blank\"}},[_vm._v(\"小紅帽的 IG\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"想更進一步參與月經的討論、時事分析、社群觀察,即刻加入:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"\\n • \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3esc2PJ\",\"target\":\"_blank\"}},[_vm._v(\"小紅帽的紅粉聊天室\")]),_vm._v(\",掌握最新活動消息與國際輿情!\"),_c('br'),_vm._v(\"\\n • 第五季月經故事信箱\"),_c('a',{attrs:{\"href\":\"https://pse.is/3h9gwd\",\"target\":\"_blank\"}},[_vm._v(\"《小紅帽月經故事電台》\")]),_vm._v(\"現正點播中,歡迎 Call in 你的月經故事\\n \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"#月經就是月經,不是「大姨媽」、「好朋友」也不是「那個」,今天起,一起直接稱呼它吧!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 小紅帽 Little Red Hood 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 想展開行動,「酵母菌」建議你可以⋯
\n • 透過臺灣大學社會學系主辦的 作伙學! 認識學習歷程回顧的重要性!
\n • 用 Club Adventure 工具包 回顧社團經驗吧!
\n ◦ 如果你是學生,透過工具包挖掘自己的學習旅程吧!
\n ◦ 如果你是家長、老師,帶著工具包與你的孩子、學生一起操作看看!
\n 想嘗試[工具包]但不確定怎麼操作?希望有人能辦一場相關的 Workshop?聯絡 酵母菌,與我們聊聊吧!
\n
\n
\n *以上資訊由迴響計畫 2019 酵母菌 提供
\n
\n
\n
\n
\n
\n
\n 另外,「探索引路人」建議你可以這樣展開行動⋯
\n • 如果是在學大學生,不妨花時間把自己在科系中的經驗整理,提供高中生參考。
\n • 如果家有高中生正在煩惱升學,試著帶著他找尋科系資料,或把自己的經驗傳承給他。
\n • 如果是高中生,試著自己尋找科系內容,課餘時也能搜尋相關的組織團體介紹科系或進行議題倡議(議題可以跟科系有關),同時也參考師長們的意見。
\n • 若想找大學科系學長姐詢問,歡迎上我們的粉專 找自己生涯探索-高中生選系諮詢
\n • 迴響計畫的行動團隊也有很多的夥伴關心不同的議題,想要認識議題、放進自己的學習歷程,也可以嘗試聯繫與詢問。
\n
\n
\n *以上資訊由迴響計畫 2019 探索引路人(找自己) 提供
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-6.vue?vue&type=template&id=071e091c&\"\nimport script from \"./team-6.vue?vue&type=script&lang=js&\"\nexport * from \"./team-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_6',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"想展開行動,「酵母菌」建議你可以⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 透過臺灣大學社會學系主辦的 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3wLjWtX\",\"target\":\"_blank\"}},[_vm._v(\"作伙學!\")]),_vm._v(\" 認識學習歷程回顧的重要性!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 用 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3rhzTHh\",\"target\":\"_blank\"}},[_vm._v(\"Club Adventure 工具包\")]),_vm._v(\" 回顧社團經驗吧!\")]),_vm._v(\" \"),_c('p',[_vm._v(\" ◦ 如果你是學生,透過工具包挖掘自己的學習旅程吧!\")]),_vm._v(\" \"),_c('p',[_vm._v(\" ◦ 如果你是家長、老師,帶著工具包與你的孩子、學生一起操作看看!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"想嘗試[工具包]但不確定怎麼操作?希望有人能辦一場相關的 Workshop?聯絡 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/36HtgEt\",\"target\":\"_blank\"}},[_vm._v(\"酵母菌\")]),_vm._v(\",與我們聊聊吧!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 酵母菌 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"另外,「探索引路人」建議你可以這樣展開行動⋯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 如果是在學大學生,不妨花時間把自己在科系中的經驗整理,提供高中生參考。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 如果家有高中生正在煩惱升學,試著帶著他找尋科系資料,或把自己的經驗傳承給他。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 如果是高中生,試著自己尋找科系內容,課餘時也能搜尋相關的組織團體介紹科系或進行議題倡議(議題可以跟科系有關),同時也參考師長們的意見。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 若想找大學科系學長姐詢問,歡迎上我們的粉專 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/36EyYal\",\"target\":\"_blank\"}},[_vm._v(\"找自己生涯探索-高中生選系諮詢\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"• 迴響計畫的行動團隊也有很多的夥伴關心不同的議題,想要認識議題、放進自己的學習歷程,也可以嘗試聯繫與詢問。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 探索引路人(找自己) 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n
\n
\n A.想認識異溫層溝通這個議題,可以追蹤這兩個粉絲專頁:
\n • 行動山棧花
\n • 對話千層派・全民聊未來
\n
\n
\n B.想體驗吸收異溫層資訊:
\n • 打開三立電視台和TVBS這兩個頻道(或是任何你知道立場不一樣的頻道),找出他們共同的議題(eg. 對指揮中心進口疫苗的看法)並且比較一下
\n • 找到一個和你政治立場不同的親友,問他上次總統大選支持誰、為什麼這樣選擇
\n • 到不同政治立場的政治人物社群、粉專,找出共同的議題並且觀察貼文和底下的的留言
\n
\n
\n C.遇到了怎麼想?
\n • 需要放下的心態:「你一定是錯的」、「你都只看片面資訊」、「你先聽我說完」、「我要說服你」
\n • 深吸一口氣,然後擁抱的心態:「我先聽你說說看」、「我知道的不一定最正確」、「我想知道你怎麼想」
\n • 面對不同想法時,可以反思是什麼原因造成雙方想法的差異,並且同理對方。
\n
\n
\n D.遇到了怎麼做?
\n • 想與異溫層交流,可先從分享比較不具威脅性的想法開始,再決定後續要不要繼續互動、互動要談什麼、怎麼談
\n • 觀察對方的溝通目的是說服還是分享(tips:看C的第一點的句子,符合兩個以上可能是說服)
\n • 深呼吸、冷靜
\n
\n
\n *以上資訊由迴響計畫 2019 異溫層溝通 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-7.vue?vue&type=template&id=697bff1a&\"\nimport script from \"./team-7.vue?vue&type=script&lang=js&\"\nexport * from \"./team-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_7',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"A.想認識異溫層溝通這個議題,可以追蹤這兩個粉絲專頁:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://bit.ly/36FuOir\",\"target\":\"_blank\"}},[_vm._v(\"行動山棧花\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3xQvgGr\",\"target\":\"_blank\"}},[_vm._v(\"對話千層派・全民聊未來\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"B.想體驗吸收異溫層資訊:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 打開三立電視台和TVBS這兩個頻道(或是任何你知道立場不一樣的頻道),找出他們共同的議題(eg. 對指揮中心進口疫苗的看法)並且比較一下\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 找到一個和你政治立場不同的親友,問他上次總統大選支持誰、為什麼這樣選擇\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 到不同政治立場的政治人物社群、粉專,找出共同的議題並且觀察貼文和底下的的留言\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"C.遇到了怎麼想?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 需要放下的心態:「你一定是錯的」、「你都只看片面資訊」、「你先聽我說完」、「我要說服你」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 深吸一口氣,然後擁抱的心態:「我先聽你說說看」、「我知道的不一定最正確」、「我想知道你怎麼想」\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 面對不同想法時,可以反思是什麼原因造成雙方想法的差異,並且同理對方。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"D.遇到了怎麼做?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 想與異溫層交流,可先從分享比較不具威脅性的想法開始,再決定後續要不要繼續互動、互動要談什麼、怎麼談\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 觀察對方的溝通目的是說服還是分享(tips:看C的第一點的句子,符合兩個以上可能是說服)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 深呼吸、冷靜\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 異溫層溝通 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 如果你對二手傢具議題有興趣,可以採取以下行動:
\n • 疫情期間,多了很多時間在家,跟傢俱有更長的相處和互動時間,趁這個機會好好觀察自己的傢俱,幫他擦拭整理乾淨,或者可以試著動腦動手改造它吧!加個喜歡樣式的桌巾、椅墊,或者拆掉一扇櫃子的門,讓居家空間增加一點新意,搞不好也是個培養第二興趣、專長的機會喔!
\n • 如果你正好想淘汰或者購入傢俱,不仿嘗試對環境更友善的管道,轉賣給親友、找找二手傢俱賣場,或者參考傢俱達人的建議。
\n • 現在很多傢俱購買回家是需要組裝的,那你有想過傢俱也是可以改造的嗎?有興趣你可以試看看喔!
\n
\n
\n • 我們也正在收集大家對於二手傢俱議題有興趣的問題,歡迎幫我們填寫問卷
\n • 或者直接搜尋二手傢俱循環 OK 蹦,我們會現身為你解惑!
\n
\n
\n *以上資訊由迴響計畫 2020 二手傢具循環 OK 繃 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-8.vue?vue&type=template&id=0fb3437d&\"\nimport script from \"./team-8.vue?vue&type=script&lang=js&\"\nexport * from \"./team-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_8',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果你對二手傢具議題有興趣,可以採取以下行動:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 疫情期間,多了很多時間在家,跟傢俱有更長的相處和互動時間,趁這個機會好好觀察自己的傢俱,幫他擦拭整理乾淨,或者可以試著動腦動手改造它吧!加個喜歡樣式的桌巾、椅墊,或者拆掉一扇櫃子的門,讓居家空間增加一點新意,搞不好也是個培養第二興趣、專長的機會喔!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 如果你正好想淘汰或者購入傢俱,不仿嘗試對環境更友善的管道,轉賣給親友、找找二手傢俱賣場,或者參考傢俱達人的建議。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 現在很多傢俱購買回家是需要組裝的,那你有想過傢俱也是可以改造的嗎?有興趣你可以試看看喔!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"• 我們也正在收集大家對於二手傢俱議題有興趣的問題,歡迎幫我們填寫\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3hJfbwv\",\"target\":\"_blank\"}},[_vm._v(\"問卷\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"• 或者直接搜尋\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3rehTNU\",\"target\":\"_blank\"}},[_vm._v(\"二手傢俱循環 OK 蹦\")]),_vm._v(\",我們會現身為你解惑!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2020 二手傢具循環 OK 繃 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 如果你想針對二輪戲院的議題展開第一步行動,最直接的就實際走訪一趟二輪戲院吧!
\n 這份懶人包,讓你第一次看二輪戲院就上手(內附全台各第二輪戲院資訊)
\n
\n
\n *以上資訊由迴響計畫 2018 Be there 不見不散 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-9.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-9.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-9.vue?vue&type=template&id=e0d8fa62&\"\nimport script from \"./team-9.vue?vue&type=script&lang=js&\"\nexport * from \"./team-9.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_9',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"如果你想針對二輪戲院的議題展開第一步行動,最直接的就實際走訪一趟二輪戲院吧!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這份\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3kCMFOW\",\"target\":\"_blank\"}},[_vm._v(\"懶人包\")]),_vm._v(\",讓你第一次看二輪戲院就上手(內附全台各第二輪戲院資訊)\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2018 Be there 不見不散 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n
\n
\n 找一天試試看獨自專心用餐,不看3C螢幕等任何東西,過程中細細觀察自己身體有什麼細微反應?對用餐的空間有什麼五感上的新發現?
\n 在睡前簡短寫下今天讓你感到對自己滿意、幸福的瞬間,是發生了什麼事?接著寫下明天想如何給自己創造新一天?連續寫一週後再回頭檢視看有什麼有趣的發現。
\n
\n
\n *以上資訊由迴響計畫 2019 生活擺態 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-10.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-10.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-10.vue?vue&type=template&id=20b606a1&\"\nimport script from \"./team-10.vue?vue&type=script&lang=js&\"\nexport * from \"./team-10.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_10',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"找一天試試看獨自專心用餐,不看3C螢幕等任何東西,過程中細細觀察自己身體有什麼細微反應?對用餐的空間有什麼五感上的新發現?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在睡前簡短寫下今天讓你感到對自己滿意、幸福的瞬間,是發生了什麼事?接著寫下明天想如何給自己創造新一天?連續寫一週後再回頭檢視看有什麼有趣的發現。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2019 生活擺態 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n \n
\n
\n 如果你對這個議題有興趣,可以展開的小行動:
\n • 對於周圍的親朋好友,不妨試著把大家都歸零,在身邊的人又做出你不能理解的行為時,先別先入為主的想:「他怎麼又來了?!」試著聽他多說一些,搞不好就連是熟識的人,都能發現一隱藏在行為背後的你不曾認識的那個他。
\n • 關注漂泊俱樂部粉專,近期會舉辦標籤議題的線上小活動,與來自不同背景的青年交流標籤下的真實感受。
\n • 晚上沒事就騎著車到街上到公園晃晃,感受一下街邊風貌,觀察不同人的生活。大膽一點的話也可以主動和陌生人聊個兩句,當作飯後運動其實還蠻有趣的。
\n
\n
\n 推薦的資訊來源:
\n • 關注 逆風劇團,他們會分享很多相關展演活動還有與少年們相處過程的點滴
\n • 關注 人約盟 定期舉辦的論壇
\n • 公共電視 誰來晚餐第3季第38集 少年之家-沒血緣的大家庭
\n • 關注 華人創傷知情推廣團隊,了解創傷知情,知情自己也知情他人。
\n
\n
\n *以上資訊由迴響計畫 2020 漂泊俱樂部 提供
\n
\n
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-11.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./team-11.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./team-11.vue?vue&type=template&id=5a023881&\"\nimport script from \"./team-11.vue?vue&type=script&lang=js&\"\nexport * from \"./team-11.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'team_11',\"isWhite\":true}},[_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"如果你對這個議題有興趣,可以展開的小行動:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 對於周圍的親朋好友,不妨試著把大家都歸零,在身邊的人又做出你不能理解的行為時,先別先入為主的想:「他怎麼又來了?!」試著聽他多說一些,搞不好就連是熟識的人,都能發現一隱藏在行為背後的你不曾認識的那個他。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 關注\"),_c('a',{attrs:{\"href\":\"https://bit.ly/3xPo9y6\",\"target\":\"_blank\"}},[_vm._v(\"漂泊俱樂部粉專\")]),_vm._v(\",近期會舉辦標籤議題的線上小活動,與來自不同背景的青年交流標籤下的真實感受。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 晚上沒事就騎著車到街上到公園晃晃,感受一下街邊風貌,觀察不同人的生活。大膽一點的話也可以主動和陌生人聊個兩句,當作飯後運動其實還蠻有趣的。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"推薦的資訊來源:\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 關注 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/2UX8Ww7\",\"target\":\"_blank\"}},[_vm._v(\"逆風劇團\")]),_vm._v(\",他們會分享很多相關展演活動還有與少年們相處過程的點滴\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 關注 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/2UUn8WO\",\"target\":\"_blank\"}},[_vm._v(\"人約盟\")]),_vm._v(\" 定期舉辦的論壇\")]),_vm._v(\" \"),_c('p',[_vm._v(\"• 公共電視 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3reYe0g\",\"target\":\"_blank\"}},[_vm._v(\"誰來晚餐第3季第38集 少年之家-沒血緣的大家庭\")])]),_vm._v(\" \"),_c('p',[_vm._v(\"• 關注 \"),_c('a',{attrs:{\"href\":\"https://bit.ly/3wXI90l\",\"target\":\"_blank\"}},[_vm._v(\"華人創傷知情推廣團隊\")]),_vm._v(\",了解創傷知情,知情自己也知情他人。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"*以上資訊由迴響計畫 2020 漂泊俱樂部 提供\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 人生百味/阿德
\n 關於【人生百味】
\n #消除貧窮的行動實驗室
\n 人生百味相信,世界上沒有一種人叫做「窮人」,流浪、落魄、貧困都是一種狀態,是人生的不同風貌、不同味道。
\n 透過各種簡單有趣的計畫,讓社會上每一個人都有機會嘗試照顧周圍弱勢的人們。
\n 人生百味不改變人,而是改變街頭的風景,使街頭成為明亮友善的地方,人們願意放慢腳步,注意與關心周遭的人事物。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-1.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-1.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-1.vue?vue&type=template&id=4d79bab0&\"\nimport script from \"./partner-1.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-1.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_1',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"人生百味/阿德\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【人生百味】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#消除貧窮的行動實驗室\")]),_vm._v(\" \"),_c('p',[_vm._v(\"人生百味相信,世界上沒有一種人叫做「窮人」,流浪、落魄、貧困都是一種狀態,是人生的不同風貌、不同味道。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"透過各種簡單有趣的計畫,讓社會上每一個人都有機會嘗試照顧周圍弱勢的人們。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"人生百味不改變人,而是改變街頭的風景,使街頭成為明亮友善的地方,人們願意放慢腳步,注意與關心周遭的人事物。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_1.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 複雜生活節/皓甯
\n 關於【複雜生活節】
\n #工作狂網友見面會 #八年級自定義論壇
\n 複雜生活節由一群有以下特質的人們組成:連續工作狂、反覆實踐、自稱系邊...。也是在 40 天之內籌備、250 人參加、一場屬於八年級生的聚會。
\n 複雜生活節相信,論壇除了討論「成功」之外還有更多的可能性。於是逐漸發展出以「成長」為名、說做就做的祭典。
\n 身兼中醫師的皓甯,也是複雜生活節的總召,對學生社團活動有著近乎痴迷的狂熱。他善用身邊累積的許多厲害美宣、行政庶務人才等資源,和自己賭了一把。期望透過活動找到一起成長的人,在探索的過程中得到更多反饋。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-2.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-2.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-2.vue?vue&type=template&id=4ad1c781&\"\nimport script from \"./partner-2.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-2.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_2',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"複雜生活節/皓甯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【複雜生活節】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#工作狂網友見面會 #八年級自定義論壇\")]),_vm._v(\" \"),_c('p',[_vm._v(\"複雜生活節由一群有以下特質的人們組成:連續工作狂、反覆實踐、自稱系邊...。也是在 40 天之內籌備、250 人參加、一場屬於八年級生的聚會。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"複雜生活節相信,論壇除了討論「成功」之外還有更多的可能性。於是逐漸發展出以「成長」為名、說做就做的祭典。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"身兼中醫師的皓甯,也是複雜生活節的總召,對學生社團活動有著近乎痴迷的狂熱。他善用身邊累積的許多厲害美宣、行政庶務人才等資源,和自己賭了一把。期望透過活動找到一起成長的人,在探索的過程中得到更多反饋。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_2.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 藺子/怡雅
\n 關於【藺子】
\n #落實工藝傳承 #建構以生產者為本的在地_文化_設計_生態圈
\n 「藺子」品牌工作室於 2016 年 11 月正式成立,怡雅秉持著希望產業能永續發展的初衷,促成了藺子的誕生。以「匯合過去與現在的永續生活設計」為出發,藉由設計加值與在地編藺師手工製作,達到環境友善、合理的收購價、工藝傳承的共好精神。
\n 怡雅與夥伴全力投入在產業鏈的復育,從藺草種植、原料處理與配送、與工藝師建立合作、品牌行銷到教育傳承。此外,我們也透過高於市價的收購標準,為工藝師們打造更理想、更穩定的就業環境。怡雅希望能夠帶領團隊串起苑裡鎮整體社區及其鄰近的鄉鎮藺草文化產業。5年內在當地創造120個工作機會,吸引人才投入產業傳承。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-3.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-3.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-3.vue?vue&type=template&id=98dc75b2&\"\nimport script from \"./partner-3.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-3.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_3',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"藺子/怡雅\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【藺子】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#落實工藝傳承 #建構以生產者為本的在地_文化_設計_生態圈\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「藺子」品牌工作室於 2016 年 11 月正式成立,怡雅秉持著希望產業能永續發展的初衷,促成了藺子的誕生。以「匯合過去與現在的永續生活設計」為出發,藉由設計加值與在地編藺師手工製作,達到環境友善、合理的收購價、工藝傳承的共好精神。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"怡雅與夥伴全力投入在產業鏈的復育,從藺草種植、原料處理與配送、與工藝師建立合作、品牌行銷到教育傳承。此外,我們也透過高於市價的收購標準,為工藝師們打造更理想、更穩定的就業環境。怡雅希望能夠帶領團隊串起苑裡鎮整體社區及其鄰近的鄉鎮藺草文化產業。5年內在當地創造120個工作機會,吸引人才投入產業傳承。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_3.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 文化銀行/璦婷
\n 關於【文化銀行】
\n #用活的方式保存我們的文化
\n 文化銀行由一群關注到傳統文化正在流逝的青年所發起,以各種方式採集、保留臺灣傳統技藝及生活樣態。文化銀行不僅留存記憶的圖像及形體,更要發揮人文思考的價值,使文化不再只是名詞,而以生動面貌重新活在你我的生活中。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-4.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-4.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-4.vue?vue&type=template&id=0f28346b&\"\nimport script from \"./partner-4.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-4.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_4',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"文化銀行/璦婷\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【文化銀行】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#用活的方式保存我們的文化\")]),_vm._v(\" \"),_c('p',[_vm._v(\"文化銀行由一群關注到傳統文化正在流逝的青年所發起,以各種方式採集、保留臺灣傳統技藝及生活樣態。文化銀行不僅留存記憶的圖像及形體,更要發揮人文思考的價值,使文化不再只是名詞,而以生動面貌重新活在你我的生活中。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_4.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 玖樓/維綱(Jerry)
\n 關於【玖樓】
\n #不只是出租公寓 #我們搭起連結不同社群和世代的橋
\n 「難道生活就只有上班、通勤、跟自己的床嗎? 為什麼我們不能讓家裡客廳變成咖啡廳?」成立於 2015 年的玖樓相信,好的居住環境不只是硬體設備,更重要的是人與人之間的關係,致力於打造共生公寓,從修繕整理、規劃設計到社群經營,讓閒置的空間能重新被利用,嘗試著各種空間共享的可能。
\n 玖樓期待建立一個屬於個人的社群聚集地、生活和工作的緩衝區,讓一群擁抱創新的人,在疏離的城市中重新建立社區,也共同想像並實踐理想生活的樣貌。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-5.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-5.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-5.vue?vue&type=template&id=1550b902&\"\nimport script from \"./partner-5.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-5.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_5',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"玖樓/維綱(Jerry)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【玖樓】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#不只是出租公寓 #我們搭起連結不同社群和世代的橋\")]),_vm._v(\" \"),_c('p',[_vm._v(\"「難道生活就只有上班、通勤、跟自己的床嗎? 為什麼我們不能讓家裡客廳變成咖啡廳?」成立於 2015 年的玖樓相信,好的居住環境不只是硬體設備,更重要的是人與人之間的關係,致力於打造共生公寓,從修繕整理、規劃設計到社群經營,讓閒置的空間能重新被利用,嘗試著各種空間共享的可能。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"玖樓期待建立一個屬於個人的社群聚集地、生活和工作的緩衝區,讓一群擁抱創新的人,在疏離的城市中重新建立社區,也共同想像並實踐理想生活的樣貌。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_5.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 創咖啡/LEO
\n 關於【創咖啡】
\n #我們的鼓舞年輕人創業不是在打高空 #而是我們挺你
\n 創咖啡是一間擁有許多新鮮的肝、熱血的年輕人聚集的咖啡館。
\n 為了解決台灣創業環境不鼓勵失敗、害怕失敗的氛圍。創辦人 Leo 在成立創咖啡前曾擔任上市櫃公司及金融業的高階主管,但是這樣的成就反而讓他產生疑惑,開始尋找人生的答案。
\n 創咖啡不做好高騖遠的事情,只是讓創業家知道有一個地方,來這裡會有人挺你、支持你、在這裡找到志同道合的夥伴。我們也不知道能做到多少,但是只要有夢想、理想,就應該付諸實踐。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-6.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-6.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-6.vue?vue&type=template&id=683cb0f1&\"\nimport script from \"./partner-6.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-6.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_6',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"創咖啡/LEO\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【創咖啡】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#我們的鼓舞年輕人創業不是在打高空 #而是我們挺你\")]),_vm._v(\" \"),_c('p',[_vm._v(\"創咖啡是一間擁有許多新鮮的肝、熱血的年輕人聚集的咖啡館。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"為了解決台灣創業環境不鼓勵失敗、害怕失敗的氛圍。創辦人 Leo 在成立創咖啡前曾擔任上市櫃公司及金融業的高階主管,但是這樣的成就反而讓他產生疑惑,開始尋找人生的答案。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"創咖啡不做好高騖遠的事情,只是讓創業家知道有一個地方,來這裡會有人挺你、支持你、在這裡找到志同道合的夥伴。我們也不知道能做到多少,但是只要有夢想、理想,就應該付諸實踐。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_6.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 遠山呼喚/子鈞
\n 關於【遠山呼喚】
\n #讓世界上每個孩子 #都能獲得公平受教育的權利
\n 2015 年 4 月,渴望跳脫短期服務的一群大學生集結在一起,隨後一場地震帶遠山呼喚深入尼泊爾的震央村落。直到今天,他們持續以「教育種植計劃」為2700位孩子扭轉教育環境。
\n 遠山呼喚透過教育種植計畫的 4 大面向:募集教育資金(帶孩子回學校),建置學習資源(改造閱讀空間、請學校增加閱讀課、獎勵閱讀學習單),鼓勵親職參與(舉辦家長日、親子講堂),以及增加學習動機(從首都找來偏鄉長大的成功人士做演講)在偏鄉種下教育。
\n 2019 年,遠山呼喚將震央成功經驗移植到尼泊爾大地震的第二震央—吉里鎮,2020 年更擴大至 10 所學校,目前正透過長期教育,扭轉 4000 位孩子的未來!
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-7.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-7.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-7.vue?vue&type=template&id=3a2ca63b&\"\nimport script from \"./partner-7.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-7.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_7',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"遠山呼喚/子鈞\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【遠山呼喚】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#讓世界上每個孩子 #都能獲得公平受教育的權利\")]),_vm._v(\" \"),_c('p',[_vm._v(\"2015 年 4 月,渴望跳脫短期服務的一群大學生集結在一起,隨後一場地震帶遠山呼喚深入尼泊爾的震央村落。直到今天,他們持續以「教育種植計劃」為2700位孩子扭轉教育環境。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"遠山呼喚透過教育種植計畫的 4 大面向:募集教育資金(帶孩子回學校),建置學習資源(改造閱讀空間、請學校增加閱讀課、獎勵閱讀學習單),鼓勵親職參與(舉辦家長日、親子講堂),以及增加學習動機(從首都找來偏鄉長大的成功人士做演講)在偏鄉種下教育。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"2019 年,遠山呼喚將震央成功經驗移植到尼泊爾大地震的第二震央—吉里鎮,2020 年更擴大至 10 所學校,目前正透過長期教育,扭轉 4000 位孩子的未來!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_7.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 玩轉學校/阿屁(哲宇)
\n 關於【玩轉學校】
\n #教學的起點_來自於啟發學習動機
\n #教育的終點_是學到改善生活環境
\n 在遊戲情境中,學生透過經驗學到的,不只是知識。玩轉是一間沒有校舍與固定老師的學校,藉由遊戲,點燃孩子自主學習的熱情、交換彼此的生命經驗。
\n 曾經也是個過動兒的阿屁,嘗試改變傳統教育以升學為目標的限制。透過遊戲,選擇用行動來實踐自己的社工魂!玩轉將世界送到孩子面前,創造一個充滿混亂與未知問題的情境,讓孩子從解決問題的過程中,學會如何和這個世界互動。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-8.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-8.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-8.vue?vue&type=template&id=1905698c&\"\nimport script from \"./partner-8.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-8.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_8',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"玩轉學校/阿屁(哲宇)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【玩轉學校】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#教學的起點_來自於啟發學習動機\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#教育的終點_是學到改善生活環境\")]),_vm._v(\" \"),_c('p',[_vm._v(\"在遊戲情境中,學生透過經驗學到的,不只是知識。玩轉是一間沒有校舍與固定老師的學校,藉由遊戲,點燃孩子自主學習的熱情、交換彼此的生命經驗。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"曾經也是個過動兒的阿屁,嘗試改變傳統教育以升學為目標的限制。透過遊戲,選擇用行動來實踐自己的社工魂!玩轉將世界送到孩子面前,創造一個充滿混亂與未知問題的情境,讓孩子從解決問題的過程中,學會如何和這個世界互動。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_8.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 好伴社計/家緯
\n 關於【好伴社計】
\n #透過社會設計讓每個人都能成為改變社會的實踐者
\n 好伴社計是一間從台中出發的設計事務所,透過帶有社會設計內涵的企劃及實作,引導眾人一起解決複雜的公共議題,創造社會價值。
\n 好伴也持續將社會設計應用在教育創新、銀髮參與、青年行動等領域,召喚並連結多⽅關係⼈,共同設計出具有社會影響力的行動方案。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-9.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-9.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-9.vue?vue&type=template&id=d887ccaa&\"\nimport script from \"./partner-9.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-9.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_9',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"好伴社計/家緯\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【好伴社計】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#透過社會設計讓每個人都能成為改變社會的實踐者\")]),_vm._v(\" \"),_c('p',[_vm._v(\"好伴社計是一間從台中出發的設計事務所,透過帶有社會設計內涵的企劃及實作,引導眾人一起解決複雜的公共議題,創造社會價值。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"好伴也持續將社會設計應用在教育創新、銀髮參與、青年行動等領域,召喚並連結多⽅關係⼈,共同設計出具有社會影響力的行動方案。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_9.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","
\n \n 行動夥伴
\n 對話千層派/品汶(Pin)
\n 關於【對話千層派】
\n #突破同溫層 #政治即生活 #對話工具包
\n 近幾年因為關注社會議題,常被親友貼上政治狂熱的標籤,同時也發現在各年齡層或各領域都會聽到「政治歸政治」的說法,於是集結了志同道合的夥伴創立了對話千層派,希望能慢慢推動普遍台灣人對政治的印象,從「我們不談政治」的句點,轉換成讓「聊政治可以很日常」的起點。
\n 透過提供對話工具包、舉辦對話工作坊,帶動更多人在日常生活中,用勇敢、理性、溫和的態度,持之以恆地對話。期待有一天談政治不再是件火爆、尷尬或會被貼標籤的事,就跟我們平常聊星座或電影一樣平常,甚至很有趣!
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-10.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-10.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./partner-10.vue?vue&type=template&id=2d43e463&\"\nimport script from \"./partner-10.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-10.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_10',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"對話千層派/品汶(Pin)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【對話千層派】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#突破同溫層 #政治即生活 #對話工具包\")]),_vm._v(\" \"),_c('p',[_vm._v(\"近幾年因為關注社會議題,常被親友貼上政治狂熱的標籤,同時也發現在各年齡層或各領域都會聽到「政治歸政治」的說法,於是集結了志同道合的夥伴創立了對話千層派,希望能慢慢推動普遍台灣人對政治的印象,從「我們不談政治」的句點,轉換成讓「聊政治可以很日常」的起點。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"透過提供對話工具包、舉辦對話工作坊,帶動更多人在日常生活中,用勇敢、理性、溫和的態度,持之以恆地對話。期待有一天談政治不再是件火爆、尷尬或會被貼標籤的事,就跟我們平常聊星座或電影一樣平常,甚至很有趣!\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_10.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-11.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-11.vue?vue&type=script&lang=js&\"","
\n \n 行動夥伴
\n 浪犬博士-狗兒家庭教育學院/子馨(Lucy)
\n 關於【浪犬博士 - 狗兒家庭教育學院】
\n #讓訓練變得好玩又簡單
\n #享受與狗狗相處最純真的快樂
\n 由訓練師 Lucy 創立的「浪犬博士」社會企業,讓每個人都能用正確的方式和狗兒和平相處。
\n 透過讓訓練變得簡單又好玩,協助狗狗家長透過多元且有趣的方式學習將訓練融入生活之中,並用狗狗的方式疼愛狗,享受與狗狗相處最純真的快樂。
\n 將訓練的盈餘投入於領養制度的優化、動保教育以及下一代的校園教育,以社會企業永續發展的模式,針對有養狗的人、準備要養狗的人,以及未來要養狗的下一代的教育能正向循環,持續下去。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./partner-11.vue?vue&type=template&id=35729df1&\"\nimport script from \"./partner-11.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-11.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_11',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"浪犬博士-狗兒家庭教育學院/子馨(Lucy)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【浪犬博士 - 狗兒家庭教育學院】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#讓訓練變得好玩又簡單\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#享受與狗狗相處最純真的快樂\")]),_vm._v(\" \"),_c('p',[_vm._v(\"由訓練師 Lucy 創立的「浪犬博士」社會企業,讓每個人都能用正確的方式和狗兒和平相處。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"透過讓訓練變得簡單又好玩,協助狗狗家長透過多元且有趣的方式學習將訓練融入生活之中,並用狗狗的方式疼愛狗,享受與狗狗相處最純真的快樂。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"將訓練的盈餘投入於領養制度的優化、動保教育以及下一代的校園教育,以社會企業永續發展的模式,針對有養狗的人、準備要養狗的人,以及未來要養狗的下一代的教育能正向循環,持續下去。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_11.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-12.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./partner-12.vue?vue&type=script&lang=js&\"","
\n \n 行動夥伴
\n ZAZA眨眨眼/張維
\n 關於【ZAZA眨眨眼】
\n #偏鄉攝影培力 #用攝影開啟孩子未來想像力
\n ZAZA 是由攝影、教育、社工、心理、行銷、設計專業的行動者,組成的年輕教育團隊。藝術確是一股解放心靈、賦予才能的極大力量。 我們希望透過攝影教育,引導孩童藉由鏡頭為自己發聲、獲得成功自信,而這份自信能成為翻轉命運的起點,陪孩子迎接之後的人生挑戰。
\n 過去十年,在柬埔寨我們服務超過 300 位偏鄉出身的孩童及青年、資助 120 戶受 Covid-19 疫情影響的急難家庭。在台灣我們與台北市立美術館、中正紀念堂、蒙特梭利小學、華山青鳥書店合作舉辦攝影展及工作坊,創造 10 萬人次線上線下觀展了解跨國偏鄉教育議題。未來我們將協力在地用影像教育,與孩子創造更多奇幻的故事。
\n
\n 2020 致親愛的迴響
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./partner-12.vue?vue&type=template&id=7d01f143&\"\nimport script from \"./partner-12.vue?vue&type=script&lang=js&\"\nexport * from \"./partner-12.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'partner_12',\"isWhite\":true}},[_c('h5',{staticClass:\"t-center\"},[_vm._v(\"行動夥伴\")]),_vm._v(\" \"),_c('h3',[_vm._v(\"ZAZA眨眨眼/張維\")]),_vm._v(\" \"),_c('p',[_vm._v(\"關於【ZAZA眨眨眼】\")]),_vm._v(\" \"),_c('p',[_vm._v(\"#偏鄉攝影培力 #用攝影開啟孩子未來想像力\")]),_vm._v(\" \"),_c('p',[_vm._v(\"ZAZA 是由攝影、教育、社工、心理、行銷、設計專業的行動者,組成的年輕教育團隊。藝術確是一股解放心靈、賦予才能的極大力量。 我們希望透過攝影教育,引導孩童藉由鏡頭為自己發聲、獲得成功自信,而這份自信能成為翻轉命運的起點,陪孩子迎接之後的人生挑戰。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"過去十年,在柬埔寨我們服務超過 300 位偏鄉出身的孩童及青年、資助 120 戶受 Covid-19 疫情影響的急難家庭。在台灣我們與台北市立美術館、中正紀念堂、蒙特梭利小學、華山青鳥書店合作舉辦攝影展及工作坊,創造 10 萬人次線上線下觀展了解跨國偏鄉教育議題。未來我們將協力在地用影像教育,與孩子創造更多奇幻的故事。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',{staticClass:\"t-center\"},[_vm._v(\"2020 致親愛的迴響\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"./images/partner_12.jpeg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-bravery.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-bravery.vue?vue&type=script&lang=js&\"","
\n \n 勇氣 Bravery
\n 「今天就是放手一搏的好日子。」
\n
\n 勇氣,是一種跨越限制的狀態,是在喜歡的人面前誠實,是在龐大的壓力下還能走的坦蕩。
\n 迴響重視的價值是,請求准許不如請求原諒,覺得該做的事情,定有屬於你的原因,出發是選擇放下限制,由別人加諸的,留給其他人去遵循。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-bravery.vue?vue&type=template&id=3d55f3d0&\"\nimport script from \"./planet-bravery.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-bravery.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_bravery',\"isWhite\":true}},[_c('h3',[_vm._v(\"勇氣 Bravery\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「今天就是放手一搏的好日子。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"勇氣,是一種跨越限制的狀態,是在喜歡的人面前誠實,是在龐大的壓力下還能走的坦蕩。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,請求准許不如請求原諒,覺得該做的事情,定有屬於你的原因,出發是選擇放下限制,由別人加諸的,留給其他人去遵循。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet13Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-bridge.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-bridge.vue?vue&type=script&lang=js&\"","
\n \n 對話 Bridge
\n 「在小島間搭起橋樑,讓彼此去到更遠的地方。」
\n
\n 對話,是與一部分的自己和解,是瞭解自己其實有盲點,是承認自己的不足,對話是接受我們需要對方。
\n 迴響相信的價值是,不知道該怎麼辦的時候,選擇對話比選擇隱瞞還要有效,講清楚、說明白就好。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-bridge.vue?vue&type=template&id=9f19dba0&\"\nimport script from \"./planet-bridge.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-bridge.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_bridge',\"isWhite\":true}},[_c('h3',[_vm._v(\"對話 Bridge\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「在小島間搭起橋樑,讓彼此去到更遠的地方。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"對話,是與一部分的自己和解,是瞭解自己其實有盲點,是承認自己的不足,對話是接受我們需要對方。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信的價值是,不知道該怎麼辦的時候,選擇對話比選擇隱瞞還要有效,講清楚、說明白就好。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet2Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-challenge.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-challenge.vue?vue&type=script&lang=js&\"","
\n \n 挑戰 Challenge
\n 「最美好的事往往也是最困難的 。」
\n
\n 挑戰是把自己跟更大的系統連接起來,是相信每一個當下都只是「小局」,把大局放在心裡,那些張牙舞爪的東西,就會變成西瓜或香蕉皮,吃掉或者乾脆繞過去。
\n 迴響重視的價值是,面對挑戰,懂得把自己變大,也能夠把自己縮的很小。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-challenge.vue?vue&type=template&id=0267e438&\"\nimport script from \"./planet-challenge.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-challenge.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_challenge',\"isWhite\":true}},[_c('h3',[_vm._v(\"挑戰 Challenge\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「最美好的事往往也是最困難的 。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"挑戰是把自己跟更大的系統連接起來,是相信每一個當下都只是「小局」,把大局放在心裡,那些張牙舞爪的東西,就會變成西瓜或香蕉皮,吃掉或者乾脆繞過去。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,面對挑戰,懂得把自己變大,也能夠把自己縮的很小。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet7Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-choice.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-choice.vue?vue&type=script&lang=js&\"","
\n \n 選擇 Choice
\n 「沒有那麼多的『一定要怎樣』,我們永遠能做出選擇。」
\n
\n 選擇是靠近自由的宣告,是責任的起點,是起跑的哨音。
\n 迴響相信的價值是,在困頓時記得你仍有所選擇,特別是在那些爭執中的第三種選擇。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-choice.vue?vue&type=template&id=f24aadc4&\"\nimport script from \"./planet-choice.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-choice.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_choice',\"isWhite\":true}},[_c('h3',[_vm._v(\"選擇 Choice\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「沒有那麼多的『一定要怎樣』,我們永遠能做出選擇。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"選擇是靠近自由的宣告,是責任的起點,是起跑的哨音。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信的價值是,在困頓時記得你仍有所選擇,特別是在那些爭執中的第三種選擇。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet6Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-desire.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-desire.vue?vue&type=script&lang=js&\"","
\n \n 渴望 Desire
\n 「永遠都知道還有更好的可能。」
\n
\n 渴望,是因為撞見未來而興奮不已。你也有未來突然變的透明清晰的時刻麼?想像力從渴望中迸發,還未發生的場景一幕一幕飛馳而過,好像你立時擁有了什麼一樣。
\n 迴響重視的價值是,心無悸動時退後一步,看見最初的渴望在哪裡,用帶著心跳的行動連結未來和現在。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-desire.vue?vue&type=template&id=14c9c82b&\"\nimport script from \"./planet-desire.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-desire.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_desire',\"isWhite\":true}},[_c('h3',[_vm._v(\"渴望 Desire\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「永遠都知道還有更好的可能。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"渴望,是因為撞見未來而興奮不已。你也有未來突然變的透明清晰的時刻麼?想像力從渴望中迸發,還未發生的場景一幕一幕飛馳而過,好像你立時擁有了什麼一樣。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,心無悸動時退後一步,看見最初的渴望在哪裡,用帶著心跳的行動連結未來和現在。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet12Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-devoted.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-devoted.vue?vue&type=script&lang=js&\"","
\n \n 用心 Devoted
\n 「如果可以,讓我們都選擇不走方便或苟且的路。」
\n
\n 用心是看見了什麼在意的事情,不別過頭去,是相信這一時一刻只有我們,不能重來也無法回去。
\n 迴響重視的價值是,不心存僥倖。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-devoted.vue?vue&type=template&id=60150fc5&\"\nimport script from \"./planet-devoted.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-devoted.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_devoted',\"isWhite\":true}},[_c('h3',[_vm._v(\"用心 Devoted\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「如果可以,讓我們都選擇不走方便或苟且的路。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"用心是看見了什麼在意的事情,不別過頭去,是相信這一時一刻只有我們,不能重來也無法回去。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,不心存僥倖。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet14Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-empathy.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-empathy.vue?vue&type=script&lang=js&\"","
\n \n 同理 Empathy
\n 「多一點體諒和一顆關心他人的心,世界就會大不相同。」
\n
\n 同理,是想盡辦法向對方那邊靠近,不為任何其他附帶的目的,回到人和人之間的關係,不特別求方法、不執著用工具。
\n 迴響重視的價值是,面對面時注意,我們是更靠近他人,還是更靠近我們自己。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-empathy.vue?vue&type=template&id=08100374&\"\nimport script from \"./planet-empathy.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-empathy.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_empathy',\"isWhite\":true}},[_c('h3',[_vm._v(\"同理 Empathy\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「多一點體諒和一顆關心他人的心,世界就會大不相同。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"同理,是想盡辦法向對方那邊靠近,不為任何其他附帶的目的,回到人和人之間的關係,不特別求方法、不執著用工具。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,面對面時注意,我們是更靠近他人,還是更靠近我們自己。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet4Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-faith.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-faith.vue?vue&type=script&lang=js&\"","
\n \n 信念 Faith
\n 「讓心成為一座山,即便有風暴也堅定不移。」
\n
\n 信念是不再執著於尋找答案,是所有為什麼最後的解釋,是看不見光的時候,鑿穿一個孔的小槌子。
\n 迴響重視的價值是,為大於你自己的東西努力,看見終點之後的終點,相信我們最終都會到達。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-faith.vue?vue&type=template&id=6aae25e8&\"\nimport script from \"./planet-faith.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-faith.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_faith',\"isWhite\":true}},[_c('h3',[_vm._v(\"信念 Faith\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「讓心成為一座山,即便有風暴也堅定不移。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"信念是不再執著於尋找答案,是所有為什麼最後的解釋,是看不見光的時候,鑿穿一個孔的小槌子。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,為大於你自己的東西努力,看見終點之後的終點,相信我們最終都會到達。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet8Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-honesty.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-honesty.vue?vue&type=script&lang=js&\"","
\n \n 真誠 Honesty
\n 「真誠是與這個世界溝通的基石。」
\n
\n 真誠是不貪心,不去假裝自己沒有的東西,不去武裝心底其實覺得不對的事情,真誠是開始樂意擁抱自己。
\n 迴響重視的價值是,你是否清楚明白,面對這個世界,其實自己已然具足,毋須更多妝點了。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-honesty.vue?vue&type=template&id=1776dc54&\"\nimport script from \"./planet-honesty.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-honesty.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_honesty',\"isWhite\":true}},[_c('h3',[_vm._v(\"真誠 Honesty\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「真誠是與這個世界溝通的基石。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"真誠是不貪心,不去假裝自己沒有的東西,不去武裝心底其實覺得不對的事情,真誠是開始樂意擁抱自己。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,你是否清楚明白,面對這個世界,其實自己已然具足,毋須更多妝點了。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet1Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-iteration.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-iteration.vue?vue&type=script&lang=js&\"","
\n \n 迭代 Iteration
\n 「前進,修正,再前進。」
\n
\n 迭代是懂得擁抱每一個不完美,是與伙伴一起前進的秘密咒語,不費力去獨佔片刻的成就,不刻意去責怪當下發生的問題。
\n 迴響重視的價值是,我們一起變的更好,或者,我們一起變的更好,你二選一。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-iteration.vue?vue&type=template&id=3669013e&\"\nimport script from \"./planet-iteration.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-iteration.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_iteration',\"isWhite\":true}},[_c('h3',[_vm._v(\"迭代 Iteration\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「前進,修正,再前進。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"迭代是懂得擁抱每一個不完美,是與伙伴一起前進的秘密咒語,不費力去獨佔片刻的成就,不刻意去責怪當下發生的問題。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,我們一起變的更好,或者,我們一起變的更好,你二選一。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet5Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-kindness.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-kindness.vue?vue&type=script&lang=js&\"","
\n \n 溫柔 Kindness
\n 「善待人的不完美,尤其是那些與自己不同的地方。」
\n
\n 溫柔是選擇看見對方的不安、疑慮和恐懼,造一池冷熱適中的溫泉,讓對方泡進去放鬆而渾然不覺。
\n 迴響相信的價值是,無論順境或逆境,我們都學著保留一點餘裕,放慢腳步,對彼此溫柔一些。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-kindness.vue?vue&type=template&id=79525df0&\"\nimport script from \"./planet-kindness.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-kindness.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_kindness',\"isWhite\":true}},[_c('h3',[_vm._v(\"溫柔 Kindness\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「善待人的不完美,尤其是那些與自己不同的地方。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"溫柔是選擇看見對方的不安、疑慮和恐懼,造一池冷熱適中的溫泉,讓對方泡進去放鬆而渾然不覺。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信的價值是,無論順境或逆境,我們都學著保留一點餘裕,放慢腳步,對彼此溫柔一些。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet9Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-open.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-open.vue?vue&type=script&lang=js&\"","
\n \n 開放 Open
\n 「擁抱各種過去、現在和未來。」
\n
\n 開放是牽好自己邊境的牧羊犬,任他吠叫,也要和上門的未來點點頭,好好招呼現在的需求,讓過去的執著經過。
\n 迴響相信的價值是,打開門來,邀請他們,該留的會留,想走的會走。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-open.vue?vue&type=template&id=3c827f7a&\"\nimport script from \"./planet-open.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-open.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_open',\"isWhite\":true}},[_c('h3',[_vm._v(\"開放 Open\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「擁抱各種過去、現在和未來。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"開放是牽好自己邊境的牧羊犬,任他吠叫,也要和上門的未來點點頭,好好招呼現在的需求,讓過去的執著經過。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信的價值是,打開門來,邀請他們,該留的會留,想走的會走。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet10Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-reflection.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-reflection.vue?vue&type=script&lang=js&\"","
\n \n 反思 Reflection
\n 「我是誰?我正在做什麼?為什麼?」
\n
\n 反思,是以採取下一步行動為前提問自己問題,是認真看待過去的時間,是開始懂得為明天作準備。
\n 迴響重視的價值是,在每一個當下,清楚手段、目的、情緒和原因。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-reflection.vue?vue&type=template&id=25abc59c&\"\nimport script from \"./planet-reflection.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-reflection.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_reflection',\"isWhite\":true}},[_c('h3',[_vm._v(\"反思 Reflection\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「我是誰?我正在做什麼?為什麼?」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"反思,是以採取下一步行動為前提問自己問題,是認真看待過去的時間,是開始懂得為明天作準備。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,在每一個當下,清楚手段、目的、情緒和原因。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet3Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-trust.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-trust.vue?vue&type=script&lang=js&\"","
\n \n 信任 Trust
\n 「永遠相信對方已經用盡全力。」
\n
\n 信任是不再踽踽獨行,是把一部分的自己交出去,像雀巢檸檬茶的廣告,可以張開雙臂躺下去。
\n 迴響相信的價值是,質疑不會讓事情推進,接受然後靠近,才能一起解決問題。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-trust.vue?vue&type=template&id=e40ebc3e&\"\nimport script from \"./planet-trust.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-trust.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_trust',\"isWhite\":true}},[_c('h3',[_vm._v(\"信任 Trust\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「永遠相信對方已經用盡全力。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"信任是不再踽踽獨行,是把一部分的自己交出去,像雀巢檸檬茶的廣告,可以張開雙臂躺下去。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響相信的價值是,質疑不會讓事情推進,接受然後靠近,才能一起解決問題。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet15Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-union.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./planet-union.vue?vue&type=script&lang=js&\"","
\n \n 團結 Union
\n 「一個人走得快,一群人走得遠。」
\n
\n 團結是地球超人的戒指,是被投觸身球時大家一起衝上去,是等最後一個人吃完飯,是隨時注意大家在哪裡。
\n 迴響重視的價值是,可以的話常把「我們」放在心上,不覺得那是別人的事情。
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./planet-union.vue?vue&type=template&id=7c3af396&\"\nimport script from \"./planet-union.vue?vue&type=script&lang=js&\"\nexport * from \"./planet-union.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'planet_union',\"isWhite\":true}},[_c('h3',[_vm._v(\"團結 Union\")]),_vm._v(\" \"),_c('p',{staticClass:\"t-center\"},[_vm._v(\"「一個人走得快,一群人走得遠。」\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"團結是地球超人的戒指,是被投觸身球時大家一起衝上去,是等最後一個人吃完飯,是隨時注意大家在哪裡。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響重視的價值是,可以的話常把「我們」放在心上,不覺得那是別人的事情。\")]),_vm._v(\" \"),_c('img',{attrs:{\"src\":require(\"../../images/world/NPC/events/Planet11Event.svg\"),\"alt\":\"\"}})])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-decision.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-decision.vue?vue&type=script&lang=js&\"","
\n \n 團隊的會議時有衝突,不太知道要怎麼解決...怎麼辦?
\n
\n
\n 女神有很多種,會議也有很多種。
\n 開會總是得與人交流,不管是資訊或是狀態,都有可能互相影響,釐清自己和對方是「帶著什麼心情狀態,需要什麼樣的資訊才能做出決定」是避免會議進入無效或衝突的可操作元素,意思是,還是有不可操作的元素啦,比如...人品?
\n
\n 迴響的會議有:
\n \n - Brain一下:單純想要一些新靈感,沒有想要被批判、檢討邏輯,靈感越新越跳脫框架越好。
\n - Kickoff:負責人對現況掌握度低,需要一些本來就掌握足夠資訊,同步成本低的夥伴一起釐清怎麼開始一件困難的事情。
\n - 例會:一般的例會。
\n - 同步會議:有會影響到眾人的事件,想請大家一起以知道為原則,解答問題為輔的會議,會刻意設計討論的流程,確保大家循序漸進的瞭解一件事情。
\n - 推進會議:有明確推進進度的需求,會在事前大致設計好所有人在會議中扮演的角色,確認好「真的能一起推進」的事情有哪些,並在結束時整理好分工 跟 Action Item。
\n - xx松:有強烈推進進度的需求,想邀請所有相關人等空下至少 3 小時的時間一起投入這件事情,就算只是在現場吃便當也行。
\n
\n
\n 也有以角色區分的:
\n \n - 馬可波羅:希望對方能扮演幫助自己看到新世界、不同觀點的角色,用這樣的心情來對待待會要討論的內容。
\n - 福爾摩斯:希望對方能扮演釐清問題癥結點,用旁觀者的角度點醒自己的角色。
\n
\n
\n 以上這些,也有可能會在衝突發生的當下才釐清「欸,不是...我是想請你當馬可波羅啦」。相信我,即使如此是事後進行,有釐清還是比較好。
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-decision.vue?vue&type=template&id=1ab959fa&\"\nimport script from \"./ax-decision.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-decision.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_decision',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"團隊的會議時有衝突,不太知道要怎麼解決...怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"女神有很多種,會議也有很多種。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"開會總是得與人交流,不管是資訊或是狀態,都有可能互相影響,釐清自己和對方是「帶著什麼心情狀態,需要什麼樣的資訊才能做出決定」是避免會議進入無效或衝突的可操作元素,意思是,還是有不可操作的元素啦,比如...人品?\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的會議有:\")]),_vm._v(\" \"),_c('ul',[_c('li',[_c('b',[_vm._v(\"Brain一下\")]),_vm._v(\":單純想要一些新靈感,沒有想要被批判、檢討邏輯,靈感越新越跳脫框架越好。\")]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"Kickoff\")]),_vm._v(\":負責人對現況掌握度低,需要一些本來就掌握足夠資訊,同步成本低的夥伴一起釐清怎麼開始一件困難的事情。\")]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"例會\")]),_vm._v(\":一般的例會。\"),_c('br')]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"同步會議\")]),_vm._v(\":有會影響到眾人的事件,想請大家一起以知道為原則,解答問題為輔的會議,會刻意設計討論的流程,確保大家循序漸進的瞭解一件事情。\")]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"推進會議\")]),_vm._v(\":有明確推進進度的需求,會在事前大致設計好所有人在會議中扮演的角色,確認好「真的能一起推進」的事情有哪些,並在結束時整理好分工 跟 Action Item。\")]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"xx松\")]),_vm._v(\":有強烈推進進度的需求,想邀請所有相關人等空下至少 3 小時的時間一起投入這件事情,就算只是在現場吃便當也行。\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"也有以角色區分的:\")]),_vm._v(\" \"),_c('ul',[_c('li',[_c('b',[_vm._v(\"馬可波羅\")]),_vm._v(\":希望對方能扮演幫助自己看到新世界、不同觀點的角色,用這樣的心情來對待待會要討論的內容。\")]),_vm._v(\" \"),_c('li',[_c('b',[_vm._v(\"福爾摩斯\")]),_vm._v(\":希望對方能扮演釐清問題癥結點,用旁觀者的角度點醒自己的角色。\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"以上這些,也有可能會在衝突發生的當下才釐清「欸,不是...我是想請你當馬可波羅啦」。相信我,即使如此是事後進行,有釐清還是比較好。\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-checkin.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-checkin.vue?vue&type=script&lang=js&\"","
\n \n 團隊才剛起步的階段,成員彼此還不熟,開會討論怪尷尬的...怎麼辦?
\n
\n
\n 女神就是因為罹患尷尬癌後,修練成佛的,我的結論是,這種事情很講緣分。
\n 你可以試著邀請大家寫這份使用說明書:使用說明書範例,增進彼此的瞭解。
\n 但如果是沒有團隊心理安全感的環境,寫的內容反而會讓人很尷尬,如果想要有簡單的方式開始,或許可以在每次會議開始時 Check-in 一下吧!
\n 這裡是由迴響團隊夥伴 / Alphar / 網路鋼琴手 / 新科 IOS 工程師 翊勤製作的 Check-in Box 歡迎使用,並勇於貢獻題目。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-checkin.vue?vue&type=template&id=761d46b5&\"\nimport script from \"./ax-checkin.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-checkin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_checkin',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"團隊才剛起步的階段,成員彼此還不熟,開會討論怪尷尬的...怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"女神就是因為罹患尷尬癌後,修練成佛的,我的結論是,這種事情很講緣分。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"你可以試著邀請大家寫這份使用說明書:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/presentation/d/1sI-PF-x75jv8d8Vi3Hme3-eB_ZbCGPWiDiMjMXExJL8/edit#slide=id.gd599a005f5_0_0\",\"target\":\"_blank\"}},[_vm._v(\"使用說明書範例\")]),_vm._v(\",增進彼此的瞭解。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"但如果是沒有團隊心理安全感的環境,寫的內容反而會讓人很尷尬,如果想要有簡單的方式開始,或許可以在每次會議開始時 Check-in 一下吧!\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這裡是由迴響團隊夥伴 / Alphar / 網路鋼琴手 / 新科 IOS 工程師 翊勤製作的 \"),_c('a',{attrs:{\"href\":\"https://echim2016.github.io/check-in-box/#\",\"target\":\"_blank\"}},[_vm._v(\"Check-in Box\")]),_vm._v(\" 歡迎使用,並勇於貢獻題目。 \")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-strange.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-strange.vue?vue&type=script&lang=js&\"","
\n \n 團隊動能突然下降了,許多成員的工作開始有延遲或未達成原本理想中狀態..怎麼辦?
\n
\n
\n 這個不要問女神,問你的團隊夥伴。
\n 你有沒有帶著團隊停下腳步,試著反思一下現況哪裡怪怪的?還是你總是覺得就你一個人在推,好像其他地方都使不上力,沒有辦法到達理想的狀態?
\n 覺得怪怪的,是一種超級明確的溫度計,不管聰明才智如何,每個人都會有這種感覺怪怪的能力,這種怪怪的感覺,如果一直被壓抑,就會讓人提不起勁,不知道現在到底在為什麼努力,越來越不能成為理想中的自己。
\n 這種「怪怪的」感覺,多半來自「目標」與「手段」的不一致,不管是客觀來講,其實目標是達不到的,或沒有達到的線索以致於大家感到無力,這方面可以歸於對理想狀態的追求出了問題;另一方面,也可以檢查手段,現在的手段是不是大家所能掌握的?或許為了達成不可能的目標,大家已經 Overload 了;最後,還可以再檢查,會不會錯把多重目標放在一個手段中,錯誤的預期目前的專案可以達成多個目標,但其實,這些目標之間是相衝突的?
\n 推薦你用 30 分鐘的時間,不用有任何架構,帶著團隊做一次「反思會議」單純花 5-7 分鐘,請大家在現場,不互相打擾的狀態下,各自整理自己覺得怪怪的地方,用大部分的時間請大家輪流分享,最後初步整理一下怪怪的面向,不一定要做出結論。
\n 當達不到理想狀態時,大部分的領導者,都會想要「Push」團隊往前,認為是慢了、不好了,卻沒有想到運用夥伴的觀點「Pull」出幫助我們釐清是不是根本只是目標跟手段分離了。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-strange.vue?vue&type=template&id=6777feae&\"\nimport script from \"./ax-strange.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-strange.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_strange',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"團隊動能突然下降了,許多成員的工作開始有延遲或未達成原本理想中狀態..怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"這個不要問女神,問你的團隊夥伴。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"你有沒有帶著團隊停下腳步,試著反思一下現況哪裡怪怪的?還是你總是覺得就你一個人在推,好像其他地方都使不上力,沒有辦法到達理想的狀態?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"覺得怪怪的,是一種超級明確的溫度計,不管聰明才智如何,每個人都會有這種感覺怪怪的能力,這種怪怪的感覺,如果一直被壓抑,就會讓人提不起勁,不知道現在到底在為什麼努力,越來越不能成為理想中的自己。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這種「怪怪的」感覺,多半來自「目標」與「手段」的不一致,不管是客觀來講,其實目標是達不到的,或沒有達到的線索以致於大家感到無力,這方面可以歸於對理想狀態的追求出了問題;另一方面,也可以檢查手段,現在的手段是不是大家所能掌握的?或許為了達成不可能的目標,大家已經 Overload 了;最後,還可以再檢查,會不會錯把多重目標放在一個手段中,錯誤的預期目前的專案可以達成多個目標,但其實,這些目標之間是相衝突的?\")]),_vm._v(\" \"),_c('p',[_vm._v(\"推薦你用 30 分鐘的時間,不用有任何架構,帶著團隊做一次「反思會議」單純花 5-7 分鐘,請大家在現場,不互相打擾的狀態下,各自整理自己覺得怪怪的地方,用大部分的時間請大家輪流分享,最後初步整理一下怪怪的面向,不一定要做出結論。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"當達不到理想狀態時,大部分的領導者,都會想要「Push」團隊往前,認為是慢了、不好了,卻沒有想到運用夥伴的觀點「Pull」出幫助我們釐清是不是根本只是目標跟手段分離了。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-sync.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-sync.vue?vue&type=script&lang=js&\"","
\n \n 團隊需要同步的資訊很多,但每次會議似乎都很冗...怎麼辦?
\n
\n
\n 女神也有資訊處理的極限,何況是人。
\n 會議的設計,是迴響常見的挑戰,因為大部分人為兼職工作,且許多專案同步進行,卻又需要互相連貫,避免品牌失了味道、鼓勵行動變成強迫行動,於是會議設計就成了關鍵。
\n 迴響的原則,是管他天要下雨娘要嫁人,先用輕鬆的話題更新每個人的狀況,讓我們感覺我們是在跟「人」開會,而不是跟「專案」追進度。
\n 其次,留一個時間讓所有人現場更新一下工作狀況(通常會事前請大家填寫,但,你知道的...人性),並整理待會兒要跨組溝通的事項。先填寫完的,可以先看其他人的內容,這個階段結束再讓每個人分享(如果有需要跨組溝通的話)
\n 最後會進入議程,迴響會先用這個 表單 蒐集大家的議程,並用一個演算法分配時間讓全體的議程先,小議程分別處理。
\n 如此,開完大議程的會議,如果沒有小議程的人,可以先行休息或視需求加入其他議程。
\n 這裡是一份迴響會議記錄的範本,讓你宛如親身經歷:20201014_全員到齊
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-sync.vue?vue&type=template&id=896d3f6a&\"\nimport script from \"./ax-sync.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-sync.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_sync',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"團隊需要同步的資訊很多,但每次會議似乎都很冗...怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"女神也有資訊處理的極限,何況是人。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"會議的設計,是迴響常見的挑戰,因為大部分人為兼職工作,且許多專案同步進行,卻又需要互相連貫,避免品牌失了味道、鼓勵行動變成強迫行動,於是會議設計就成了關鍵。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的原則,是管他天要下雨娘要嫁人,先用輕鬆的話題更新每個人的狀況,讓我們感覺我們是在跟「人」開會,而不是跟「專案」追進度。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"其次,留一個時間讓所有人現場更新一下工作狀況(通常會事前請大家填寫,但,你知道的...人性),並整理待會兒要跨組溝通的事項。先填寫完的,可以先看其他人的內容,這個階段結束再讓每個人分享(如果有需要跨組溝通的話)\")]),_vm._v(\" \"),_c('p',[_vm._v(\"最後會進入議程,迴響會先用這個 \"),_c('a',{attrs:{\"href\":\"https://forms.gle/cWctYfzTD276JzNfA\",\"target\":\"_blank\"}},[_vm._v(\"表單\")]),_vm._v(\" 蒐集大家的議程,並用一個演算法分配時間讓全體的議程先,小議程分別處理。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"如此,開完大議程的會議,如果沒有小議程的人,可以先行休息或視需求加入其他議程。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"這裡是一份迴響會議記錄的範本,讓你宛如親身經歷:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/document/d/1aSsf9JxlKBRH5kFOl3nwpQYLsN7s1MWpSIfzjalCQZM/edit\",\"target\":\"_blank\"}},[_vm._v(\"20201014_全員到齊\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-teamwork.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-teamwork.vue?vue&type=script&lang=js&\"","
\n \n 和夥伴的工作習慣不同,有時會產生衝突,但好像不知道怎麼講開的話...怎麼辦?
\n
\n
\n 跟人有關的事情,問神明一定是最後一個選項。
\n 雖然有這樣的問題,現在問肯定是來不及了,不過下次或許你可以先試著在組成團隊時,就邀請大家寫這份使用說明書:使用說明書範例 ,這樣等到真的有什麼衝突了,有機會翻看一下,才知道會不會是自己踩雷了,也會知道可以如何開啟溝通。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-teamwork.vue?vue&type=template&id=199efb2d&\"\nimport script from \"./ax-teamwork.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-teamwork.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_teamwork',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"和夥伴的工作習慣不同,有時會產生衝突,但好像不知道怎麼講開的話...怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"跟人有關的事情,問神明一定是最後一個選項。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"雖然有這樣的問題,現在問肯定是來不及了,不過下次或許你可以先試著在組成團隊時,就邀請大家寫這份使用說明書:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/presentation/d/1sI-PF-x75jv8d8Vi3Hme3-eB_ZbCGPWiDiMjMXExJL8/edit#slide=id.gd599a005f5_0_0\",\"target\":\"_blank\"}},[_vm._v(\"使用說明書範例\")]),_vm._v(\" ,這樣等到真的有什麼衝突了,有機會翻看一下,才知道會不會是自己踩雷了,也會知道可以如何開啟溝通。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-value.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./ax-value.vue?vue&type=script&lang=js&\"","
\n \n 團隊的文化越來越不健康,有問題時會互相推卸責任,資訊會偷藏...怎麼辦?
\n
\n
\n 女神我一直都是孑然一身,不會遇到「文化」的問題,不過有些從旁觀察的經驗,與你分享。
\n 文化這種事情,與領導人和一致性有關,領導者是什麼樣子,團隊就會是什麼樣子,口頭的文化沒有在行為上相符,出現不一致的時候沒有點出來討論,都是文化的殺手,簡單來說,團隊文化比鄉民的玻璃心還要脆弱,要破壞團隊文化,比吃冰棒還簡單,沒有什麼辦法,只能由領導團隊的人一直強調,感覺怪怪的時候提出來討論而已。這裡是迴響的團隊文化,公開比較容易受到檢核,我們的皮也會繃的緊一點:迴響文化與個人工作說明書。
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./ax-value.vue?vue&type=template&id=42d0c32a&\"\nimport script from \"./ax-value.vue?vue&type=script&lang=js&\"\nexport * from \"./ax-value.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'ax_value',\"isWhite\":true}},[_c('h5',[_c('b',[_vm._v(\"團隊的文化越來越不健康,有問題時會互相推卸責任,資訊會偷藏...怎麼辦?\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"女神我一直都是孑然一身,不會遇到「文化」的問題,不過有些從旁觀察的經驗,與你分享。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"文化這種事情,與領導人和一致性有關,領導者是什麼樣子,團隊就會是什麼樣子,口頭的文化沒有在行為上相符,出現不一致的時候沒有點出來討論,都是文化的殺手,簡單來說,團隊文化比鄉民的玻璃心還要脆弱,要破壞團隊文化,比吃冰棒還簡單,沒有什麼辦法,只能由領導團隊的人一直強調,感覺怪怪的時候提出來討論而已。這裡是迴響的團隊文化,公開比較容易受到檢核,我們的皮也會繃的緊一點:\"),_c('a',{attrs:{\"href\":\"https://docs.google.com/presentation/d/1wZVOE9-Kb8DeigcGlDI4JEgB-HMAcQf9EgGDzJaVoU8/edit#slide=id.g9b42d09b5b_0_819\",\"target\":\"_blank\"}},[_vm._v(\"迴響文化與個人工作說明書\")]),_vm._v(\"。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./item-picture.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./item-picture.vue?vue&type=script&lang=js&\"","
\n \n \n 登頂照
\n {{moment(this.player.state.pictureDate).format('YYYY.MM.DD')}} 這天,好不容易爬到了迴響行動大山山頂。
\n 上面的風景好美,常駐在山頂的攝影師說,從他那拍過去的 view,能把群山的景致和遠方閃爍的光芒,拍成一幅 19 世紀名畫《霧海上的旅人》,他這麼一說我直接買單,花了 2 顆小小人果實請他幫我拍照了。
\n 好希望下次能有「夥伴」可以一起登山一起拍照呢!
\n \n \n 下載我的登頂照片\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./item-stone-soup.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./item-stone-soup.vue?vue&type=script&lang=js&\"","
\n \n 石頭湯食譜
\n 有許多關於石頭湯的故事,講的大概都是一群飢餓的人想到法子,一邊熬煮石頭,一邊講述[美味]的遠景,吸引圍觀的人把真正的食材投入湯裡,最後果然煮出美味的湯的故事。
\n 迴響的行動夥伴們,正在做的都是看起來很厲害的事情,這些故事讓人著迷,我們常常被吸引,有時候甚至會誤以為,靠近很厲害的人,就能獲得重要的東西。
\n
\n
\n 不過,只是一塊普通的石頭而已,在迴響的官網裡花費力氣,一一對話完畢後只會獲得這個東西。但這或許是我們能夠從他們身上學到的,最珍貴的事情。
\n 現在看起來再厲害、再困難的事情,一定都有第一步。如果能重播,那個跨出第一步的時刻,一定是一件他們當時做得到的,像煮石頭湯那樣只能硬著頭皮試試看的事情。
\n 不過是找一塊石頭而已,不妨這樣想吧!實在覺得太難了,對自己沒有自信的時候,可以先找一塊石頭,先做一件你一定做得到的事情。
\n 分享給你迴響的第一個石頭,是當年(2017)提案給青年署迴響計畫 ,直到今天有些事情真的做到了,有些天差地遠,無論如何好險當時有把它拿來煮,用盡全力吆喝著,行動換來行動,才有今天的一點成績。
\n 分享出來青澀的時期,儘管丟臉,希望能給你一些勇敢,像迴響這樣的計畫,也有開始的時候,你現在心裡正在想的那件事情,只是開始的話,應該也不會難到哪去!?
\n
\n
\n • 第一版提案簡報
• 第二版提案簡報(後面還有很多版本,不過這個是由第一版換來的夥伴協助設計的,更有意義)
• 提案企劃
\n
\n
\n
\n
\n
\n
\n \n\n\n\n\n\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./credits.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./credits.vue?vue&type=script&lang=js&\"","
\n \n Credits
\n
\n 青年迴響計畫 歷屆執行團隊
\n
\n 2020 - 2021
\n 總召、行動團隊管理
簡瓅、謝璿
\n 網站組
阮琛婷、余韋呈、胡哲愷
\n 品牌行銷
陳君芃
\n 設計組
游文瑀、李奕
\n 工程組
李心毅、李坤樸、陳彥求
\n 機制組
姚瑞鵬、王鵬傑、梁藝瀠、鄭惠文
\n 教練組
林鼎惟、梁藝瀠、黃昱翔、胡哲愷、鄭惠文、蕭仲恩、劉昀瑄、
鄭柏軒、雷文鳳、鍾孟翰、邱純慧、李晨馨、陳一心
\n 議題團隊組
周家緯、賴婷姿、黃昱翔
\n 活動與團隊管理組
劉建成、鄭媛心、蔡旻軒、陳信安、高雯、許翊勤
\n 志工組
周穎、林律潔、林芝肜、童筑君、張喬茵、洪雅筠、吳安倢、周宇心、林貫佑、李韋萱
\n 行動夥伴
王維綱、人生百味 巫彥德、藺子 廖怡雅、複雜生活節 許皓甯、文化銀行 邵璦婷、
玩轉學校 林哲宇、浪犬博士 林子馨、創咖啡 楊育明、對話千層派 李品汶、遠山呼喚 林子鈞、好伴社計 周家緯、ZAZA 眨眨眼 張維
\n 議題團隊
人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會
\n 評審組
魚肚白設計 王詩婷、一碼 黃芳惠、人生百味 巫彥德、浪犬博士 林子馨、創咖啡 楊育明、
社企流 iLab 龍映涵、Impact Hub 陳昱築、藺子 廖怡雅、遠山呼喚 林子鈞、
aaaaCityflaneurs 王維綱、對話千層派 李品汶、文化銀行 邵璦婷、
眨眨眼 張維、RE-THINK 重新思考 王滋鮮、心靈之美心理治療所 張艾如、
逆風劇團 成瑋盛、張希慈、聚樂邦 林志育、REnato lab 歐陽藹寧、林事務所 林承毅
\n 攝影夥伴
概念啊攝影公司
\n 燈光&音響夥伴
野果創意工作室
\n 展場花藝
無事生活
\n
\n
\n
\n 2019
\n 總召
簡瓅
\n 品牌行銷
陳君芃
\n 設計群
薛名喨、高郡悅、林芸萱
\n 網站
胡哲愷
\n 活動體驗
張喬茵、張力堃、杜蒨妮
\n 資源連結
簡瓅、張力堃、杜蒨妮
\n 孵化機制
周鈺婷、姚瑞鵬、吳威廷、許翊勤、劉建成
\n 教練管理
劉靜文
\n 教練群
王鵬傑、梁藝瀠、鄭惠文、邱純慧、黃培陞、張庭嘉、謝睿哲、黃俊豪
\n 志工管理
高雯、杜蒨妮
\n 志工群
劉容宇、林怡瑩、朱映綺、余采玲、潘信達、楊逸頎、蔡嘉珊、林怡宣
\n 活動管家
周穎
\n 財務
章芙萍、黃郁文
\n 先賢夥伴
劉建成、余韋呈、王詩婷
\n 行動夥伴
玖樓 王維綱、人生百味 巫彥德、藺子 廖怡雅、複雜生活節 許皓甯、文化銀行 邵璦婷、
玩轉學校 林哲宇、浪犬博士 林子馨、創咖啡 楊育明、對話千層派 李品汶、
遠山呼喚 林子鈞、好伴社計 連真、林祖儀
\n 評審組
社企流 iLab 龍映涵、KPMG 侯家楷、Impact Hub 陳昱築、創咖啡 楊育明、
台北市都市更新處更新經營科 胡如君、奧沃市場趨勢顧問 林宛瑩、海湧工作室 陳人平、
複雜生活節 許皓甯、淡江大學諮商曁職涯輔導組 許凱傑、人生百味 巫彥德、好伴社計 連真、
玩轉學校 林哲宇、浪犬博士 林子馨、魚肚白設計 王詩婷
\n 攝影夥伴
概念啊攝影公司
\n
\n
\n
\n 2018
\n 專案管理與團隊經營
周鈺婷
\n 資源統籌與大型活動管理
王詩婷
\n 視覺設計與活動展場規劃
余韋呈
\n 團隊管理
劉建成、周穎
\n 行銷
黃彥禎
\n 設計與活動組
張容瑄、阮琛婷
\n 機制與教練管理
姚瑞鵬、簡瓅
\n 教練組
白羽平、劉靜文、王鵬傑、梁藝瀠、黃閔駿、曹伊裴、
薛名喨、鐘弘育、曾振皓、古展弦、吳思璇
\n 行動夥伴組
林子馨、游馥宇
\n 志工管理
許翊勤、高雯
\n 志工
翁晨馨、黃靜盈、游喜和、劉育全、蔡佳蓉、蕭妙芹、陳宜琳、呂芷瑋、蘇紫雯、
賴怡秀、彭語汎、柯昱均、李芝瑩、楊詩琳、施又寧、邱莉婷、黃昱翔、陳柏毅、
鍾孟勳、朱映綺、莊惟媜、林冠全、蘇紫茜、劉芳瑀、康琇婷、王品人
\n 財務管理
高雯
\n 行動夥伴
人生百味 巫彥德、浪犬博士 林子馨、工具時代 留鈺淳、文化銀行 邵璦婷、
FRNC 李品汶、藺子 廖怡雅、創咖啡 王崇政、玖樓 王維綱、好棒棒愛家事 楊宇綸、
好伴社計 連真、複雜生活節 許皓甯、玩轉學校 林哲宇、貳貳柒酒吧 李學誠、
讓狂人飛 洪璿岳、大學前必修課 陳睨
\n 評審組
台大創創中心執行長 曾正忠、林事務所 林承毅、
雜學校 蘇仰志、智榮基金會 李竺姮、泛科學 雷雅淇
\n 攝影夥伴
概念啊攝影公司
\n 燈光&音響夥伴
野果創意工作室
\n 展場花藝
TA Deco
\n
\n
\n
\n 2017
\n 發起人
劉建成
\n 共同發起
串串 Change
\n 資源統籌與大型活動管理
王詩婷
\n 專案管理與團隊經營
周鈺婷
\n 設計群
余韋呈、王品人
\n 行銷與志工管理
施又寧
\n 網站工程師
胡哲愷、賴冠廷
\n 帳務管理
鍾孟翰
\n 活動組
曹伊裴
\n 遊俠
周昭蓉、高雯、邱鬧、吳思璇
\n 網站介面規劃與設計
王馨怡
\n 教練管理
巫曉涵
\n 教練
姚瑞鵬、張庭嘉、李俊廷、黃閔駿
\n 志工
黃思婷、何亭誼、林蓮馨、董元富、吳思璇、徐筱瑜、李筌偉、
邱莉婷、黃柏實、徐亦立、林祐任、高雯、黃翎育
\n 行動夥伴
文化銀行 邵璦婷、城市浪人 張希慈、職人 石展丞、複雜生活節 許皓甯、
人生百味 巫彥德、沃草 林祖儀、美感教科書 陳慕天、N次坊 侯智薰、
玖樓 王維綱、Hahow 好學校 黃彥傑、星球實驗創作空間 陳禹安、
好伴社計 連真、藺子 廖怡雅、好日子 高海琪、格外有意思 陳其農
\n 評審組
佔空間 張宗舜 (Argi)、老寮 邱星崴、臺大社會系 陳東升、
台灣吧 謝政豪、雜學校 蘇仰志、報導者 房慧真、活水社企 楊家彥
\n 攝影夥伴
概念啊攝影公司
\n 燈光&音響夥伴
野果創意工作室
\n 展場花藝
TA Deco
\n 主題曲製作
洪立
\n
\n
\n
\n 2017 - 2021 迴響計畫線上成果展 製作群
\n 執行統籌
群像創造
\n
\n 《迴響大本營》
\n 網站開發
胡哲愷、阮琛婷
\n 美術&設計
余韋呈
\n 專案管理
阮琛婷
\n 文案
簡瓅、劉建成、陳君芃
\n 腳本
胡哲愷、周鈺婷、阮琛婷
\n 配樂&音效
史丹周
\n 測試
蔡旻軒、黃昱翔、郭軒綸、吳姿諭、古展弦、杜倩妮
\n 特別感謝
Dadable、Be There 不見不散、生活擺態、暗房裡的人、小紅帽、眾森、二手傢俱循環ok蹦、
酵母菌、探索引路人、異溫層溝通、失敗練習 Warm Up Again、漂泊俱樂部
\n 工程師的貓
Qbur
\n
\n
\n
\n 《眾力小宇宙》
\n 議題團隊
人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會
\n 青年團隊
巫癒子、漂泊俱樂部、一即是參 人文異術、失敗練習 Warm Up Again、大地之子 農夫黑皮膚
\n 責任編輯
好伴設計 周家緯、黃昱翔
\n 網頁開發
胡哲凱、阮琛婷
\n 美術&設計
余韋呈
\n 專案管理
阮琛婷
\n
\n
\n
\n 《任務包實戰基地》
\n 任務包公開化執行
姚瑞鵬、王鵬傑
\n 網頁開發
酉是數據科技 王鵬傑、李心毅、李坤樸、陳彥求
\n 美術&設計
酉是數據科技 黃婕茵
\n
\n
\n
\n 《號召響應者指南》
\n 編輯群
人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會
\n 責任編輯
好伴設計
\n 排版&設計
游文瑀
\n
\n
\n
\n 《2021 影響力報告書》
\n 編輯群
簡瓅、劉建成、陳君芃、姚瑞鵬、王鵬傑
\n 排版&設計
王品人
\n
\n
\n
\n
\n
\n 主辦機關
教育部青年發展署
\n
\n
\n
\n
\n
\n 承辦單位
Alpha Team
\n
\n
\n
\n
\n
\n 合作單位
D-School NTU 台大創新設計學院
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n © 2021 RethinkTaiwan2027 all rights reserved.
\n
\n
\n \n \n\n\n\n\n\n","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modals.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./modals.vue?vue&type=script&lang=js&\"","
\n \n
\n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n\n \n \n\n \n \n\n\n\n\n\n","import { render, staticRenderFns } from \"./item-picture.vue?vue&type=template&id=2f52cd22&scoped=true&\"\nimport script from \"./item-picture.vue?vue&type=script&lang=js&\"\nexport * from \"./item-picture.vue?vue&type=script&lang=js&\"\nimport style0 from \"./item-picture.vue?vue&type=style&index=0&id=2f52cd22&scoped=true&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"2f52cd22\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'item_picture'}},[_c('div',{attrs:{\"id\":\"picture_materials\"}},[_c('img',{staticClass:\"bg\",attrs:{\"src\":require(\"./images/picture_bg.svg\"),\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{staticClass:\"elf\",attrs:{\"src\":_vm.object_imgs.elf[_vm.player.state.pictureElfImgIndex],\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{staticClass:\"user\",attrs:{\"src\":_vm.object_imgs.user[_vm.player.state.pictureUserImgIndex],\"alt\":\"\"}}),_vm._v(\" \"),_c('img',{staticClass:\"dog\",attrs:{\"src\":_vm.object_imgs.dog[_vm.player.state.pictureDogImgIndex],\"alt\":\"\"}})]),_vm._v(\" \"),_c('h3',[_vm._v(\"登頂照\")]),_vm._v(\" \"),_c('p',[_vm._v(_vm._s(_vm.moment(this.player.state.pictureDate).format('YYYY.MM.DD'))+\" 這天,好不容易爬到了迴響行動大山山頂。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"上面的風景好美,常駐在山頂的攝影師說,從他那拍過去的 view,能把群山的景致和遠方閃爍的光芒,拍成一幅 19 世紀名畫\"),_c('a',{attrs:{\"href\":\"https://zh.wikipedia.org/wiki/%E9%9B%BE%E6%B5%B7%E4%B8%8A%E7%9A%84%E6%97%85%E4%BA%BA#/media/File:Caspar_David_Friedrich_-_Wanderer_above_the_sea_of_fog.jpg\",\"target\":\"_blank\"}},[_vm._v(\"《霧海上的旅人》\")]),_vm._v(\",他這麼一說我直接買單,花了 2 顆小小人果實請他幫我拍照了。\")]),_vm._v(\" \"),(!_vm.player.state.pictureHasDog && !_vm.player.state.pictureHasElf)?_c('p',[_vm._v(\"好希望下次能有「夥伴」可以一起登山一起拍照呢!\")]):_vm._e(),_vm._v(\" \"),_c('canvas',{ref:\"canvas\",attrs:{\"id\":\"picture_canvas\",\"width\":\"1920px\",\"height\":\"1080px\"}}),_vm._v(\" \"),_c('a',{staticClass:\"button\",on:{\"click\":function($event){return _vm.save()}}},[_vm._v(\"下載我的登頂照片\")])])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./item-stone-soup.vue?vue&type=template&id=e3efc9f8&\"\nimport script from \"./item-stone-soup.vue?vue&type=script&lang=js&\"\nexport * from \"./item-stone-soup.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'item_stone_soup',\"isWhite\":true}},[_c('h3',[_vm._v(\"石頭湯食譜\")]),_vm._v(\" \"),_c('p',[_vm._v(\"有許多關於石頭湯的故事,講的大概都是一群飢餓的人想到法子,一邊熬煮石頭,一邊講述[美味]的遠景,吸引圍觀的人把真正的食材投入湯裡,最後果然煮出美味的湯的故事。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"迴響的行動夥伴們,正在做的都是看起來很厲害的事情,這些故事讓人著迷,我們常常被吸引,有時候甚至會誤以為,靠近很厲害的人,就能獲得重要的東西。\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"不過,只是一塊普通的石頭而已,在迴響的官網裡花費力氣,一一對話完畢後只會獲得這個東西。但這或許是我們能夠從他們身上學到的,最珍貴的事情。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"現在看起來再厲害、再困難的事情,一定都有第一步。如果能重播,那個跨出第一步的時刻,一定是一件他們當時做得到的,像煮石頭湯那樣只能硬著頭皮試試看的事情。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"不過是找一塊石頭而已,不妨這樣想吧!實在覺得太難了,對自己沒有自信的時候,可以先找一塊石頭,先做一件你一定做得到的事情。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"分享給你迴響的第一個石頭,是當年(2017)提案給青年署迴響計畫 ,直到今天有些事情真的做到了,有些天差地遠,無論如何好險當時有把它拿來煮,用盡全力吆喝著,行動換來行動,才有今天的一點成績。\")]),_vm._v(\" \"),_c('p',[_vm._v(\"分享出來青澀的時期,儘管丟臉,希望能給你一些勇敢,像迴響這樣的計畫,也有開始的時候,你現在心裡正在想的那件事情,只是開始的話,應該也不會難到哪去!?\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://drive.google.com/file/d/0B0VmJ9KtWHZvaV84WVBBZXliVHc/view?usp=sharing&resourcekey=0-wXl_O_ZgrfUDc6biliSj1A\",\"target\":\"_blank\"}},[_vm._v(\"第一版提案簡報\")]),_c('br'),_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://drive.google.com/file/d/0B0VmJ9KtWHZvYVlCQkF3YkVXdGc/view?usp=sharing&resourcekey=0-1JXKeLQQIC6ob_Mh_krVTg\",\"target\":\"_blank\"}},[_vm._v(\"第二版提案簡報\")]),_vm._v(\"(後面還有很多版本,不過這個是由第一版換來的夥伴協助設計的,更有意義)\"),_c('br'),_vm._v(\"• \"),_c('a',{attrs:{\"href\":\"https://docs.google.com/document/d/1Mxj7PMfA5MeFi9mNiv4FQxji6dJ7vsq6M4pxbpGKiHY/edit?usp=sharing\",\"target\":\"_blank\"}},[_vm._v(\"提案企劃\")])]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./credits.vue?vue&type=template&id=4f9187fb&\"\nimport script from \"./credits.vue?vue&type=script&lang=js&\"\nexport * from \"./credits.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('Modal',{ref:\"modal\",attrs:{\"name\":'credits',\"isWhite\":true}},[_c('p',[_vm._v(\"Credits\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"青年迴響計畫 歷屆執行團隊\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"2020 - 2021\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"總召、行動團隊管理\")]),_c('br'),_vm._v(\"簡瓅、謝璿\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網站組\")]),_c('br'),_vm._v(\"阮琛婷、余韋呈、胡哲愷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"品牌行銷\")]),_c('br'),_vm._v(\"陳君芃\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"設計組\")]),_c('br'),_vm._v(\"游文瑀、李奕\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"工程組\")]),_c('br'),_vm._v(\"李心毅、李坤樸、陳彥求\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"機制組\")]),_c('br'),_vm._v(\"姚瑞鵬、王鵬傑、梁藝瀠、鄭惠文\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練組\")]),_c('br'),_vm._v(\"林鼎惟、梁藝瀠、黃昱翔、胡哲愷、鄭惠文、蕭仲恩、劉昀瑄、\"),_c('br'),_vm._v(\"鄭柏軒、雷文鳳、鍾孟翰、邱純慧、李晨馨、陳一心\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"議題團隊組\")]),_c('br'),_vm._v(\"周家緯、賴婷姿、黃昱翔\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"活動與團隊管理組\")]),_c('br'),_vm._v(\"劉建成、鄭媛心、蔡旻軒、陳信安、高雯、許翊勤\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工組\")]),_c('br'),_vm._v(\"周穎、林律潔、林芝肜、童筑君、張喬茵、洪雅筠、吳安倢、周宇心、林貫佑、李韋萱\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行動夥伴\")]),_c('br'),_vm._v(\"王維綱、人生百味 巫彥德、藺子 廖怡雅、複雜生活節 許皓甯、文化銀行 邵璦婷、\"),_c('br'),_vm._v(\"玩轉學校 林哲宇、浪犬博士 林子馨、創咖啡 楊育明、對話千層派 李品汶、遠山呼喚 林子鈞、好伴社計 周家緯、ZAZA 眨眨眼 張維\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"議題團隊\")]),_c('br'),_vm._v(\"人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"評審組\")]),_c('br'),_vm._v(\"魚肚白設計 王詩婷、一碼 黃芳惠、人生百味 巫彥德、浪犬博士 林子馨、創咖啡 楊育明、\"),_c('br'),_vm._v(\"社企流 iLab 龍映涵、Impact Hub 陳昱築、藺子 廖怡雅、遠山呼喚 林子鈞、\"),_c('br'),_vm._v(\"aaaaCityflaneurs 王維綱、對話千層派 李品汶、文化銀行 邵璦婷、\"),_c('br'),_vm._v(\"眨眨眼 張維、RE-THINK 重新思考 王滋鮮、心靈之美心理治療所 張艾如、\"),_c('br'),_vm._v(\"逆風劇團 成瑋盛、張希慈、聚樂邦 林志育、REnato lab 歐陽藹寧、林事務所 林承毅\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"攝影夥伴\")]),_c('br'),_vm._v(\"概念啊攝影公司\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"燈光&音響夥伴\")]),_c('br'),_vm._v(\"野果創意工作室\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"展場花藝\")]),_c('br'),_vm._v(\"無事生活\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"2019\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"總召\")]),_c('br'),_vm._v(\"簡瓅\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"品牌行銷\")]),_c('br'),_vm._v(\"陳君芃\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"設計群\")]),_c('br'),_vm._v(\"薛名喨、高郡悅、林芸萱\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網站\")]),_c('br'),_vm._v(\"胡哲愷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"活動體驗\")]),_c('br'),_vm._v(\"張喬茵、張力堃、杜蒨妮\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"資源連結\")]),_c('br'),_vm._v(\"簡瓅、張力堃、杜蒨妮\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"孵化機制\")]),_c('br'),_vm._v(\"周鈺婷、姚瑞鵬、吳威廷、許翊勤、劉建成\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練管理\")]),_c('br'),_vm._v(\"劉靜文\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練群\")]),_c('br'),_vm._v(\"王鵬傑、梁藝瀠、鄭惠文、邱純慧、黃培陞、張庭嘉、謝睿哲、黃俊豪\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工管理\")]),_c('br'),_vm._v(\"高雯、杜蒨妮\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工群\")]),_c('br'),_vm._v(\"劉容宇、林怡瑩、朱映綺、余采玲、潘信達、楊逸頎、蔡嘉珊、林怡宣\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"活動管家\")]),_c('br'),_vm._v(\"周穎\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"財務\")]),_c('br'),_vm._v(\"章芙萍、黃郁文\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"先賢夥伴\")]),_c('br'),_vm._v(\"劉建成、余韋呈、王詩婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行動夥伴\")]),_c('br'),_vm._v(\"玖樓 王維綱、人生百味 巫彥德、藺子 廖怡雅、複雜生活節 許皓甯、文化銀行 邵璦婷、\"),_c('br'),_vm._v(\"玩轉學校 林哲宇、浪犬博士 林子馨、創咖啡 楊育明、對話千層派 李品汶、\"),_c('br'),_vm._v(\"遠山呼喚 林子鈞、好伴社計 連真、林祖儀\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"評審組\")]),_c('br'),_vm._v(\"社企流 iLab 龍映涵、KPMG 侯家楷、Impact Hub 陳昱築、創咖啡 楊育明、\"),_c('br'),_vm._v(\"台北市都市更新處更新經營科 胡如君、奧沃市場趨勢顧問 林宛瑩、海湧工作室 陳人平、\"),_c('br'),_vm._v(\"複雜生活節 許皓甯、淡江大學諮商曁職涯輔導組 許凱傑、人生百味 巫彥德、好伴社計 連真、\"),_c('br'),_vm._v(\"玩轉學校 林哲宇、浪犬博士 林子馨、魚肚白設計 王詩婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"攝影夥伴\")]),_c('br'),_vm._v(\"概念啊攝影公司\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"2018\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"專案管理與團隊經營\")]),_c('br'),_vm._v(\"周鈺婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"資源統籌與大型活動管理\")]),_c('br'),_vm._v(\"王詩婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"視覺設計與活動展場規劃\")]),_c('br'),_vm._v(\"余韋呈\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"團隊管理\")]),_c('br'),_vm._v(\"劉建成、周穎\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行銷\")]),_c('br'),_vm._v(\"黃彥禎\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"設計與活動組\")]),_c('br'),_vm._v(\"張容瑄、阮琛婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"機制與教練管理\")]),_c('br'),_vm._v(\"姚瑞鵬、簡瓅\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練組\")]),_c('br'),_vm._v(\"白羽平、劉靜文、王鵬傑、梁藝瀠、黃閔駿、曹伊裴、\"),_c('br'),_vm._v(\"薛名喨、鐘弘育、曾振皓、古展弦、吳思璇\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行動夥伴組\")]),_c('br'),_vm._v(\"林子馨、游馥宇\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工管理\")]),_c('br'),_vm._v(\"許翊勤、高雯\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工\")]),_c('br'),_vm._v(\"翁晨馨、黃靜盈、游喜和、劉育全、蔡佳蓉、蕭妙芹、陳宜琳、呂芷瑋、蘇紫雯、\"),_c('br'),_vm._v(\"賴怡秀、彭語汎、柯昱均、李芝瑩、楊詩琳、施又寧、邱莉婷、黃昱翔、陳柏毅、\"),_c('br'),_vm._v(\"鍾孟勳、朱映綺、莊惟媜、林冠全、蘇紫茜、劉芳瑀、康琇婷、王品人\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"財務管理\")]),_c('br'),_vm._v(\"高雯\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行動夥伴\")]),_c('br'),_vm._v(\"人生百味 巫彥德、浪犬博士 林子馨、工具時代 留鈺淳、文化銀行 邵璦婷、\"),_c('br'),_vm._v(\"FRNC 李品汶、藺子 廖怡雅、創咖啡 王崇政、玖樓 王維綱、好棒棒愛家事 楊宇綸、\"),_c('br'),_vm._v(\"好伴社計 連真、複雜生活節 許皓甯、玩轉學校 林哲宇、貳貳柒酒吧 李學誠、\"),_c('br'),_vm._v(\"讓狂人飛 洪璿岳、大學前必修課 陳睨\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"評審組\")]),_c('br'),_vm._v(\"台大創創中心執行長 曾正忠、林事務所 林承毅、\"),_c('br'),_vm._v(\"雜學校 蘇仰志、智榮基金會 李竺姮、泛科學 雷雅淇\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"攝影夥伴\")]),_c('br'),_vm._v(\"概念啊攝影公司\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"燈光&音響夥伴\")]),_c('br'),_vm._v(\"野果創意工作室\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"展場花藝\")]),_c('br'),_vm._v(\"TA Deco\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"2017\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"發起人\")]),_c('br'),_vm._v(\"劉建成\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"共同發起\")]),_c('br'),_vm._v(\"串串 Change\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"資源統籌與大型活動管理\")]),_c('br'),_vm._v(\"王詩婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"專案管理與團隊經營\")]),_c('br'),_vm._v(\"周鈺婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"設計群\")]),_c('br'),_vm._v(\"余韋呈、王品人\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行銷與志工管理\")]),_c('br'),_vm._v(\"施又寧\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網站工程師\")]),_c('br'),_vm._v(\"胡哲愷、賴冠廷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"帳務管理\")]),_c('br'),_vm._v(\"鍾孟翰\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"活動組\")]),_c('br'),_vm._v(\"曹伊裴\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"遊俠\")]),_c('br'),_vm._v(\"周昭蓉、高雯、邱鬧、吳思璇\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網站介面規劃與設計\")]),_c('br'),_vm._v(\"王馨怡\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練管理\")]),_c('br'),_vm._v(\"巫曉涵\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"教練\")]),_c('br'),_vm._v(\"姚瑞鵬、張庭嘉、李俊廷、黃閔駿\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"志工\")]),_c('br'),_vm._v(\"黃思婷、何亭誼、林蓮馨、董元富、吳思璇、徐筱瑜、李筌偉、\"),_c('br'),_vm._v(\"邱莉婷、黃柏實、徐亦立、林祐任、高雯、黃翎育\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"行動夥伴\")]),_c('br'),_vm._v(\"文化銀行 邵璦婷、城市浪人 張希慈、職人 石展丞、複雜生活節 許皓甯、\"),_c('br'),_vm._v(\"人生百味 巫彥德、沃草 林祖儀、美感教科書 陳慕天、N次坊 侯智薰、\"),_c('br'),_vm._v(\"玖樓 王維綱、Hahow 好學校 黃彥傑、星球實驗創作空間 陳禹安、\"),_c('br'),_vm._v(\"好伴社計 連真、藺子 廖怡雅、好日子 高海琪、格外有意思 陳其農\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"評審組\")]),_c('br'),_vm._v(\"佔空間 張宗舜 (Argi)、老寮 邱星崴、臺大社會系 陳東升、\"),_c('br'),_vm._v(\"台灣吧 謝政豪、雜學校 蘇仰志、報導者 房慧真、活水社企 楊家彥\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"攝影夥伴\")]),_c('br'),_vm._v(\"概念啊攝影公司\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"燈光&音響夥伴\")]),_c('br'),_vm._v(\"野果創意工作室\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"展場花藝\")]),_c('br'),_vm._v(\"TA Deco\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"主題曲製作\")]),_c('br'),_vm._v(\"洪立\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"2017 - 2021 迴響計畫線上成果展 製作群\")])]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"執行統籌\")]),_c('br'),_vm._v(\"群像創造\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"《迴響大本營》\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網站開發\")]),_c('br'),_vm._v(\"胡哲愷、阮琛婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"美術&設計\")]),_c('br'),_vm._v(\"余韋呈\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"專案管理\")]),_c('br'),_vm._v(\"阮琛婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"文案\")]),_c('br'),_vm._v(\"簡瓅、劉建成、陳君芃\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"腳本\")]),_c('br'),_vm._v(\"胡哲愷、周鈺婷、阮琛婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"配樂&音效\")]),_c('br'),_vm._v(\"史丹周\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"測試\")]),_c('br'),_vm._v(\"蔡旻軒、黃昱翔、郭軒綸、吳姿諭、古展弦、杜倩妮\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"特別感謝\")]),_c('br'),_vm._v(\"Dadable、Be There 不見不散、生活擺態、暗房裡的人、小紅帽、眾森、二手傢俱循環ok蹦、\"),_c('br'),_vm._v(\"酵母菌、探索引路人、異溫層溝通、失敗練習 Warm Up Again、漂泊俱樂部\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"工程師的貓\")]),_c('br'),_vm._v(\"Qbur\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"《眾力小宇宙》\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"議題團隊\")]),_c('br'),_vm._v(\"人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"青年團隊\")]),_c('br'),_vm._v(\"巫癒子、漂泊俱樂部、一即是參 人文異術、失敗練習 Warm Up Again、大地之子 農夫黑皮膚\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"責任編輯\")]),_c('br'),_vm._v(\"好伴設計 周家緯、黃昱翔\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網頁開發\")]),_c('br'),_vm._v(\"胡哲凱、阮琛婷\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"美術&設計\")]),_c('br'),_vm._v(\"余韋呈\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"專案管理\")]),_c('br'),_vm._v(\"阮琛婷\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"《任務包實戰基地》\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"任務包公開化執行\")]),_c('br'),_vm._v(\"姚瑞鵬、王鵬傑\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"網頁開發\")]),_c('br'),_vm._v(\"酉是數據科技 王鵬傑、李心毅、李坤樸、陳彥求\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"美術&設計\")]),_c('br'),_vm._v(\"酉是數據科技 黃婕茵\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"《號召響應者指南》\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"編輯群\")]),_c('br'),_vm._v(\"人生百味、好民文化協會、粉紅豹文化、壹零玖伍工作室、臺灣愛行動協會、數位外交協會\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"責任編輯\")]),_c('br'),_vm._v(\"好伴設計\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"排版&設計\")]),_c('br'),_vm._v(\"游文瑀\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h4',[_vm._v(\"《2021 影響力報告書》\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"編輯群\")]),_c('br'),_vm._v(\"簡瓅、劉建成、陳君芃、姚瑞鵬、王鵬傑\")]),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"排版&設計\")]),_c('br'),_vm._v(\"王品人\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"主辦機關\")]),_c('br'),_vm._v(\"教育部青年發展署\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"承辦單位\")]),_c('br'),_vm._v(\"Alpha Team\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('p',[_c('b',[_vm._v(\"合作單位\")]),_c('br'),_vm._v(\"D-School NTU 台大創新設計學院\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('h5',[_vm._v(\"© 2021 RethinkTaiwan2027 all rights reserved.\")]),_vm._v(\" \"),_c('br'),_vm._v(\" \"),_c('br')])}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import { render, staticRenderFns } from \"./modals.vue?vue&type=template&id=72f6af8c&\"\nimport script from \"./modals.vue?vue&type=script&lang=js&\"\nexport * from \"./modals.vue?vue&type=script&lang=js&\"\nimport style0 from \"./modals.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"modal_screen\"},[_c('ThreeSpiritual',{ref:\"ThreeSpiritual\"}),_vm._v(\" \"),_c('Test',{ref:\"Test\"}),_vm._v(\" \"),_c('s0-intro',{ref:\"s0_intro\"}),_vm._v(\" \"),_c('s0-fire',{ref:\"s0_fire\"}),_vm._v(\" \"),_c('s0-epitome',{ref:\"s0_epitome\"}),_vm._v(\" \"),_c('s0-tools',{ref:\"s0_tools\"}),_vm._v(\" \"),_c('s0-board',{ref:\"s0_board\"}),_vm._v(\" \"),_c('giant-room-1',{ref:\"giant_room_1\"}),_vm._v(\" \"),_c('giant-room-2',{ref:\"giant_room_2\"}),_vm._v(\" \"),_c('giant-room-3',{ref:\"giant_room_3\"}),_vm._v(\" \"),_c('giant-room-4',{ref:\"giant_room_4\"}),_vm._v(\" \"),_c('giant-room-5',{ref:\"giant_room_5\"}),_vm._v(\" \"),_c('giant-room-6',{ref:\"giant_room_6\"}),_vm._v(\" \"),_c('s1-intro-route',{ref:\"s1_intro_route\"}),_vm._v(\" \"),_c('s1-intro-stone',{ref:\"s1_intro_stone\"}),_vm._v(\" \"),_c('s1-stone-tablet',{ref:\"s1_stone_tablet\"}),_vm._v(\" \"),_c('s1-partners',{ref:\"s1_partners\"}),_vm._v(\" \"),_c('y2017-stone',{ref:\"y2017_stone\"}),_vm._v(\" \"),_c('y2017-1',{ref:\"y2017_1\"}),_vm._v(\" \"),_c('y2017-2',{ref:\"y2017_2\"}),_vm._v(\" \"),_c('y2017-3',{ref:\"y2017_3\"}),_vm._v(\" \"),_c('y2017-4',{ref:\"y2017_4\"}),_vm._v(\" \"),_c('y2017-5',{ref:\"y2017_5\"}),_vm._v(\" \"),_c('y2017-6',{ref:\"y2017_6\"}),_vm._v(\" \"),_c('y2017-7',{ref:\"y2017_7\"}),_vm._v(\" \"),_c('y2017-8',{ref:\"y2017_8\"}),_vm._v(\" \"),_c('y2018-stone',{ref:\"y2018_stone\"}),_vm._v(\" \"),_c('y2018-1',{ref:\"y2018_1\"}),_vm._v(\" \"),_c('y2018-2',{ref:\"y2018_2\"}),_vm._v(\" \"),_c('y2018-3',{ref:\"y2018_3\"}),_vm._v(\" \"),_c('y2018-4',{ref:\"y2018_4\"}),_vm._v(\" \"),_c('y2018-5',{ref:\"y2018_5\"}),_vm._v(\" \"),_c('y2018-6',{ref:\"y2018_6\"}),_vm._v(\" \"),_c('y2018-7',{ref:\"y2018_7\"}),_vm._v(\" \"),_c('y2018-8',{ref:\"y2018_8\"}),_vm._v(\" \"),_c('y2019-stone',{ref:\"y2019_stone\"}),_vm._v(\" \"),_c('y2019-1',{ref:\"y2019_1\"}),_vm._v(\" \"),_c('y2019-2',{ref:\"y2019_2\"}),_vm._v(\" \"),_c('y2019-3',{ref:\"y2019_3\"}),_vm._v(\" \"),_c('y2019-4',{ref:\"y2019_4\"}),_vm._v(\" \"),_c('y2019-5',{ref:\"y2019_5\"}),_vm._v(\" \"),_c('y2019-6',{ref:\"y2019_6\"}),_vm._v(\" \"),_c('y2019-7',{ref:\"y2019_7\"}),_vm._v(\" \"),_c('y2019-8',{ref:\"y2019_8\"}),_vm._v(\" \"),_c('y2019-9',{ref:\"y2019_9\"}),_vm._v(\" \"),_c('y2020-stone',{ref:\"y2020_stone\"}),_vm._v(\" \"),_c('y2020-1',{ref:\"y2020_1\"}),_vm._v(\" \"),_c('y2020-2',{ref:\"y2020_2\"}),_vm._v(\" \"),_c('y2020-3',{ref:\"y2020_3\"}),_vm._v(\" \"),_c('y2020-4',{ref:\"y2020_4\"}),_vm._v(\" \"),_c('y2020-5',{ref:\"y2020_5\"}),_vm._v(\" \"),_c('y2020-6',{ref:\"y2020_6\"}),_vm._v(\" \"),_c('y2020-7',{ref:\"y2020_7\"}),_vm._v(\" \"),_c('y2020-8',{ref:\"y2020_8\"}),_vm._v(\" \"),_c('y2020-9',{ref:\"y2020_9\"}),_vm._v(\" \"),_c('s2-three-spiritual',{ref:\"s2_three_spiritual\"}),_vm._v(\" \"),_c('s2-big-tree-hole',{ref:\"s2_big_tree_hole\"}),_vm._v(\" \"),_c('s2-theory-of-change',{ref:\"s2_theory_of_change\"}),_vm._v(\" \"),_c('s2-studio-1',{ref:\"s2_studio_1\"}),_c('s2-studio-2',{ref:\"s2_studio_2\"}),_c('s2-studio-3',{ref:\"s2_studio_3\"}),_vm._v(\" \"),_c('s2-studio-1-time-capsule',{ref:\"s2_studio_1_time_capsule\"}),_c('s2-studio-2-time-capsule',{ref:\"s2_studio_2_time_capsule\"}),_c('s2-studio-3-time-capsule',{ref:\"s2_studio_3_time_capsule\"}),_vm._v(\" \"),_c('s2-team-type-tree-1',{ref:\"s2_team_type_tree_1\"}),_c('s2-team-type-tree-2',{ref:\"s2_team_type_tree_2\"}),_c('s2-team-type-tree-3',{ref:\"s2_team_type_tree_3\"}),_c('s2-team-type-tree-4',{ref:\"s2_team_type_tree_4\"}),_c('s2-team-type-tree-5',{ref:\"s2_team_type_tree_5\"}),_c('s2-team-type-tree-6',{ref:\"s2_team_type_tree_6\"}),_c('s2-team-type-tree-7',{ref:\"s2_team_type_tree_7\"}),_vm._v(\" \"),_c('team-1',{ref:\"team_1\"}),_c('team-2',{ref:\"team_2\"}),_c('team-3',{ref:\"team_3\"}),_c('team-4',{ref:\"team_4\"}),_c('team-5',{ref:\"team_5\"}),_c('team-6',{ref:\"team_6\"}),_c('team-7',{ref:\"team_7\"}),_c('team-8',{ref:\"team_8\"}),_c('team-9',{ref:\"team_9\"}),_c('team-10',{ref:\"team_10\"}),_c('team-11',{ref:\"team_11\"}),_vm._v(\" \"),_c('partner-1',{ref:\"partner_1\"}),_c('partner-2',{ref:\"partner_2\"}),_c('partner-3',{ref:\"partner_3\"}),_c('partner-4',{ref:\"partner_4\"}),_c('partner-5',{ref:\"partner_5\"}),_c('partner-6',{ref:\"partner_6\"}),_c('partner-7',{ref:\"partner_7\"}),_c('partner-8',{ref:\"partner_8\"}),_c('partner-9',{ref:\"partner_9\"}),_c('partner-10',{ref:\"partner_10\"}),_c('partner-11',{ref:\"partner_11\"}),_c('partner-12',{ref:\"partner_12\"}),_vm._v(\" \"),_c('planet-bravery',{ref:\"planet_bravery\"}),_vm._v(\" \"),_c('planet-bridge',{ref:\"planet_bridge\"}),_vm._v(\" \"),_c('planet-challenge',{ref:\"planet_challenge\"}),_vm._v(\" \"),_c('planet-choice',{ref:\"planet_choice\"}),_vm._v(\" \"),_c('planet-desire',{ref:\"planet_desire\"}),_vm._v(\" \"),_c('planet-devoted',{ref:\"planet_devoted\"}),_vm._v(\" \"),_c('planet-empathy',{ref:\"planet_empathy\"}),_vm._v(\" \"),_c('planet-faith',{ref:\"planet_faith\"}),_vm._v(\" \"),_c('planet-honesty',{ref:\"planet_honesty\"}),_vm._v(\" \"),_c('planet-iteration',{ref:\"planet_iteration\"}),_vm._v(\" \"),_c('planet-kindness',{ref:\"planet_kindness\"}),_vm._v(\" \"),_c('planet-open',{ref:\"planet_open\"}),_vm._v(\" \"),_c('planet-reflection',{ref:\"planet_reflection\"}),_vm._v(\" \"),_c('planet-trust',{ref:\"planet_trust\"}),_vm._v(\" \"),_c('planet-union',{ref:\"planet_union\"}),_vm._v(\" \"),_c('ax-checkin',{ref:\"ax_checkin\"}),_vm._v(\" \"),_c('ax-decision',{ref:\"ax_decision\"}),_vm._v(\" \"),_c('ax-strange',{ref:\"ax_strange\"}),_vm._v(\" \"),_c('ax-sync',{ref:\"ax_sync\"}),_vm._v(\" \"),_c('ax-teamwork',{ref:\"ax_teamwork\"}),_vm._v(\" \"),_c('ax-value',{ref:\"ax_value\"}),_vm._v(\" \"),_c('item-picture',{ref:\"item_picture\"}),_vm._v(\" \"),_c('item-stone-soup',{ref:\"item_stone_soup\"}),_vm._v(\" \"),_c('credits',{ref:\"credits\"})],1)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./postit.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./postit.vue?vue&type=script&lang=js&\"","
\n \n
\n
(請輸入文字)
\n
\n

\n
\n
\n
\n
\n
\n 完成了\n
\n
\n 讓我再想一下\n
\n

\n
\n
\n\n\n\n\n\n","import { render, staticRenderFns } from \"./postit.vue?vue&type=template&id=4f4847f8&scoped=true&\"\nimport script from \"./postit.vue?vue&type=script&lang=js&\"\nexport * from \"./postit.vue?vue&type=script&lang=js&\"\nimport style0 from \"./postit.vue?vue&type=style&index=0&id=4f4847f8&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"4f4847f8\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.isPost)?_c('div',{staticClass:\"postit\"},[_c('div',{staticClass:\"green_mask\"}),_vm._v(\" \"),_c('div',{staticClass:\"hint\"},[_vm._v(\"(請輸入文字)\")]),_vm._v(\" \"),_c('div',{staticClass:\"postit_paper\"},[_c('img',{staticClass:\"bg\",attrs:{\"src\":require(\"../images/world/postit.svg\")}}),_vm._v(\" \"),_c('div',{staticClass:\"question\",domProps:{\"innerHTML\":_vm._s(_vm.question)}}),_vm._v(\" \"),_c('textarea',{directives:[{name:\"model\",rawName:\"v-model\",value:(_vm.content),expression:\"content\"}],staticClass:\"textarea\",attrs:{\"type\":\"text\",\"placeholder\":\"寫在這裡吧!\",\"maxlength\":(_vm.key == 'hmw'? 50 : 15)},domProps:{\"value\":(_vm.content)},on:{\"input\":function($event){if($event.target.composing){ return; }_vm.content=$event.target.value}}})]),_c('br'),_vm._v(\" \"),_c('div',{staticClass:\"post_it_btn_set\"},[_c('div',{staticClass:\"btn finish_btn\",on:{\"click\":function($event){return _vm.save_and_exit()}}},[_vm._v(\"\\n 完成了\\n \")]),_vm._v(\" \"),_c('div',{staticClass:\"exit_link\",on:{\"click\":function($event){return _vm.exit()}}},[_vm._v(\"\\n 讓我再想一下\\n \")]),_vm._v(\" \"),_c('img',{staticClass:\"mouse_hint\",attrs:{\"src\":require(\"../images/world/mouse_hint.svg\")}})])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./keyboard.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./keyboard.vue?vue&type=script&lang=js&\"","
\n \n
\n
\n
![]()
\n

\n
\n
\n
![]()
\n

\n
\n
\n
![]()
\n

\n
\n
\n
![]()
\n

\n
\n
\n
\n
\n
![]()
\n

\n
\n
\n
![]()
\n

\n
\n
\n

\n

\n
\n
\n
\n\n\n\n\n\n","import { render, staticRenderFns } from \"./keyboard.vue?vue&type=template&id=41b443d2&scoped=true&\"\nimport script from \"./keyboard.vue?vue&type=script&lang=js&\"\nexport * from \"./keyboard.vue?vue&type=script&lang=js&\"\nimport style0 from \"./keyboard.vue?vue&type=style&index=0&id=41b443d2&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"41b443d2\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.check_mobile())?_c('div',{staticClass:\"keyboard\"},[_c('div',{directives:[{name:\"touch\",rawName:\"v-touch:end\",value:(_vm.cancel_move),expression:\"cancel_move\",arg:\"end\"}],staticClass:\"arrow_keys\"},[_c('div',{directives:[{name:\"touch\",rawName:\"v-touch:start\",value:(_vm.touch_up_handler),expression:\"touch_up_handler\",arg:\"start\"},{name:\"touch\",rawName:\"v-touch:move\",value:(_vm.cancel_move),expression:\"cancel_move\",arg:\"move\"}],staticClass:\"arrow_up key_btn\",attrs:{\"name\":\"ArrowUp\"}},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/arrow_key'+ (_vm.forbidden_arrow_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/arrow_key_active.svg\"),\"draggable\":\"false\"}})]),_c('hr'),_vm._v(\" \"),_c('div',{directives:[{name:\"touch\",rawName:\"v-touch:start\",value:(_vm.touch_left_handler),expression:\"touch_left_handler\",arg:\"start\"},{name:\"touch\",rawName:\"v-touch:move\",value:(_vm.cancel_move),expression:\"cancel_move\",arg:\"move\"}],staticClass:\"arrow_left key_btn\",attrs:{\"name\":\"ArrowLeft\"}},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/arrow_key'+ (_vm.forbidden_arrow_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/arrow_key_active.svg\"),\"draggable\":\"false\"}})]),_vm._v(\" \"),_c('div',{directives:[{name:\"touch\",rawName:\"v-touch:start\",value:(_vm.touch_right_handler),expression:\"touch_right_handler\",arg:\"start\"},{name:\"touch\",rawName:\"v-touch:move\",value:(_vm.cancel_move),expression:\"cancel_move\",arg:\"move\"}],staticClass:\"arrow_right key_btn\",attrs:{\"name\":\"ArrowRight\"}},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/arrow_key'+ (_vm.forbidden_arrow_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/arrow_key_active.svg\"),\"draggable\":\"false\"}})]),_c('hr'),_vm._v(\" \"),_c('div',{directives:[{name:\"touch\",rawName:\"v-touch:start\",value:(_vm.touch_down_handler),expression:\"touch_down_handler\",arg:\"start\"},{name:\"touch\",rawName:\"v-touch:move\",value:(_vm.cancel_move),expression:\"cancel_move\",arg:\"move\"}],staticClass:\"arrow_down key_btn\",attrs:{\"name\":\"ArrowDown\"}},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/arrow_key'+ (_vm.forbidden_arrow_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/arrow_key_active.svg\"),\"draggable\":\"false\"}})])]),_vm._v(\" \"),_c('div',{staticClass:\"munipulate_keys\"},[_c('div',{directives:[{name:\"touch\",rawName:\"v-touch\",value:(_vm.touch_A_handler),expression:\"touch_A_handler\"}],staticClass:\"A_key key_btn\"},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/A_key'+ (_vm.forbidden_A_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/A_key_active.svg\"),\"draggable\":\"false\"}})]),_vm._v(\" \"),_c('div',{directives:[{name:\"touch\",rawName:\"v-touch\",value:(_vm.touch_B_handler),expression:\"touch_B_handler\"}],staticClass:\"B_key key_btn\"},[_c('img',{attrs:{\"src\":require('../images/world/keyboard/B_key'+ (_vm.forbidden_B_key()? '_grey' : '') +'.svg'),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/B_key_active.svg\"),\"draggable\":\"false\"}})]),_vm._v(\" \"),_c('div',{directives:[{name:\"touch\",rawName:\"v-touch\",value:(_vm.touch_esc_handler),expression:\"touch_esc_handler\"}],staticClass:\"esc_key key_btn\"},[_c('img',{attrs:{\"src\":require(\"../images/world/keyboard/esc_key.svg\"),\"draggable\":\"false\"}}),_vm._v(\" \"),_c('img',{staticClass:\"focus_btn\",attrs:{\"src\":require(\"../images/world/keyboard/esc_key_active.svg\"),\"draggable\":\"false\"}})])])]):_vm._e()}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"guide_map\"},[_vm._m(0),_vm._v(\" \"),_c('div',{staticClass:\"avatar_dot\",style:('left:' + (_vm.player.avatar.x / _vm.xMax) * 100 + '%;' +\n 'top:' + ((_vm.player.avatar.y-24) / _vm.yMax) * 100 + '%;')})])}\nvar staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"bg\"},[_c('img',{attrs:{\"draggable\":\"false\",\"src\":require(\"../images/world/guide_map.png\"),\"alt\":\"\"}})])}]\n\nexport { render, staticRenderFns }","import mod from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./guide_map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../node_modules/babel-loader/lib/index.js??ref--8-0!../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./guide_map.vue?vue&type=script&lang=js&\"","
\n \n
\n

\n
\n
\n\n
\n \n
\n\n\n\n\n\n","import { render, staticRenderFns } from \"./guide_map.vue?vue&type=template&id=46a2a37a&scoped=true&\"\nimport script from \"./guide_map.vue?vue&type=script&lang=js&\"\nexport * from \"./guide_map.vue?vue&type=script&lang=js&\"\nimport style0 from \"./guide_map.vue?vue&type=style&index=0&id=46a2a37a&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"46a2a37a\",\n null\n \n)\n\nexport default component.exports","
\n \n
\n
\n
\n \n
\n
\n
\n
\n \n
\n
\n
\n
\n \n
![]()
\n\n \n
\n \n
\n \n
\n \n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n

\n
RPG 線上展
\n
\n
四年來的林林總總都記錄在這了!
\n
\n
青年迴響計畫從 2017 年開始,致力協助青年為自己在意的社會議題跨出第一步行動。發展至 2020 年,首次嘗試以 RPG 線上展的形式,將過去四年來累積的故事,策劃並呈現於此。
\n
\n
迴響大本營 RPG 線上展,帶你以輕鬆有趣的互動方式:從登頂歷程,回顧迴響計畫四年來的里程碑與 2027 願景;從解決森林動物的問題,認識迴響的行動工具;從大澤遊湖探險,認識迴響團隊文化重視的行動價值;到處走走,與偶遇的 NPC 們聊聊,認識參與在迴響裡的大大小小故事與人們。
\n
\n
空下一些時間,按下「開始探索」立即開始體驗吧!
\n
\n
\n
開始探索\n
\n
\n
\n

\n
\n 使用鍵盤的上下左右鍵
來移動迴響小人\n
\n
\n
\n
\n \n

\n
\n 移動至山屋櫃檯面前
\n 使用鍵盤的 A 鍵進行對話\n
\n
\n \n
\n
\n
\n
\n
\n
![]()
\n
![]()
\n
\n
\n
![]()
\n
![]()
\n
\n
\n\n \n
\n \n switch\n
\n \n re-start\n
\n \n
\n
\n Go!\n
\n
\n \n name:
\n SearchCome Here
\n
\n width:
\n left:
\n top:
\n margin-left:
\n margin-top:
\n Get JSON\n
\n \n
\n
\n
\n ({{developer.preview.x}},{{developer.preview.y}})\n
\n
Gotcha!
\n
\n
\n

\n
\n
\n

\n
\n
\n

\n
\n
\n
\n
\n \n\n \n
\n \n
\n
\n\n\n\n\n\n","import mod from \"-!../../node_modules/babel-loader/lib/index.js??ref--8-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./map.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../node_modules/babel-loader/lib/index.js??ref--8-0!../../node_modules/vue-loader/lib/index.js??vue-loader-options!./map.vue?vue&type=script&lang=js&\"","// import { createRouter, createWebHistory } from 'vue-router'\n// import Vue from 'vue/dist/vue.esm'\nimport VueRouter from 'vue-router'\nimport Map from '../../map.vue'\n\nconst routes = [\n {\n path: '/',\n name: 'Home',\n component: () => import('../../home.vue'),\n // component: () => import('../../actionroad.vue'),\n },\n {\n path: '/actionroad',\n name: 'Actionroad',\n component: () => import('../../actionroad.vue'),\n },\n { // all teams\n path: '/universe',\n name: 'Universe',\n component: () => import('../../universe.vue')\n },\n { // team landing page\n path: '/universe/:team_id(\\\\d+)',\n name: 'Team',\n component: () => import('../../team.vue'),\n },\n { // all teams\n path: '/universe/:function',\n name: 'UniverseAnimation',\n component: () => import('../../universe.vue')\n },\n { // team page edit\n path: '/universe/:team_id/edit',\n name: 'TeamEdit',\n component: () => import('../../team_edit.vue'),\n },\n { // activities list\n path: '/universe/:team_id/activities',\n name: 'Activities',\n component: () => import('../../activities.vue'),\n },\n { // new activity page\n path: '/universe/:team_id/activity/new',\n name: 'ActivityNew',\n component: () => import('../../activity_edit.vue'),\n },\n { // activity page\n path: '/universe/:team_id/activity/:activity_id',\n component: () => import('../../activity.vue'),\n },\n { // activity page edit\n path: '/universe/:team_id/activity/:activity_id/edit',\n name: 'ActivityEdit',\n component: () => import('../../activity_edit.vue'),\n },\n {\n path: '/universe/*',\n name: '404',\n component: () => import('../../universe.vue')\n // or 404?\n },\n {\n path: '/universe_exhibition',\n name: 'Exhibition',\n component: () => import('../../exhibition.vue')\n },\n {\n path: '/universe_exhibition/lessons',\n name: 'ExhibitionLessons',\n component: () => import('../../exhibition_lessons.vue')\n },\n {\n path: '/universe_exhibition/plans',\n name: 'ExhibitionPlans',\n component: () => import('../../exhibition_plans.vue')\n },\n {\n path: '/universe_exhibition/methodology',\n name: 'ExhibitionMethology',\n component: () => import('../../exhibition_methodology.vue')\n },\n {\n path: '/universe_exhibition/:team_id(\\\\d+)',\n name: 'ExhibitionTeam',\n component: () => import('../../exhibition_team.vue')\n },\n {\n path: '/universe_exhibition/:team_id/edit',\n name: 'ExhibitionTeamEdit',\n component: () => import('../../exhibition_team_edit.vue')\n },\n {\n path: '/map',\n name: 'Map',\n component: Map\n },\n {\n path: '/map/dev',\n name: 'DevelopForm',\n component: () => import('../../map/develop.vue')\n }\n]\n\n\n// const router = createRouter({\n// history: createWebHistory(process.env.BASE_URL),\n// routes\n// })\nconst router = new VueRouter({\n mode: 'history',\n // notice that use history mode in Rails I should research it\n routes: routes\n})\n\n// const app = new Vue({\n// routes: routes,\n// el:\"#app\"\n// })\n\nexport default router\n","import { render, staticRenderFns } from \"./map.vue?vue&type=template&id=285f48be&\"\nimport script from \"./map.vue?vue&type=script&lang=js&\"\nexport * from \"./map.vue?vue&type=script&lang=js&\"\nimport style0 from \"./map.vue?vue&type=style&index=0&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\nexport default component.exports","// shim for using process in browser\nvar process = module.exports = {}; // cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\n\nfunction defaultClearTimeout() {\n throw new Error('clearTimeout has not been defined');\n}\n\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n})();\n\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n } // if setTimeout wasn't available but was latter defined\n\n\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch (e) {\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch (e) {\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n}\n\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n } // if clearTimeout wasn't available but was latter defined\n\n\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e) {\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e) {\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n}\n\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n\n draining = false;\n\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n var len = queue.length;\n\n while (len) {\n currentQueue = queue;\n queue = [];\n\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n\n queueIndex = -1;\n len = queue.length;\n }\n\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n\n queue.push(new Item(fun, args));\n\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n}; // v8 likes predictible objects\n\n\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\n\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\n\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\n\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) {\n return [];\n};\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () {\n return '/';\n};\n\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\n\nprocess.umask = function () {\n return 0;\n};","var scope = typeof global !== \"undefined\" && global || typeof self !== \"undefined\" && self || window;\nvar apply = Function.prototype.apply; // DOM APIs, for completeness\n\nexports.setTimeout = function () {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\n\nexports.setInterval = function () {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\n\nexports.clearTimeout = exports.clearInterval = function (timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\n\nTimeout.prototype.unref = Timeout.prototype.ref = function () {};\n\nTimeout.prototype.close = function () {\n this._clearFn.call(scope, this._id);\n}; // Does not start the time, just sets up the members needed.\n\n\nexports.enroll = function (item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function (item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function (item) {\n clearTimeout(item._idleTimeoutId);\n var msecs = item._idleTimeout;\n\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout) item._onTimeout();\n }, msecs);\n }\n}; // setimmediate attaches itself to the global object\n\n\nrequire(\"setimmediate\"); // On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\n\n\nexports.setImmediate = typeof self !== \"undefined\" && self.setImmediate || typeof global !== \"undefined\" && global.setImmediate || this && this.setImmediate;\nexports.clearImmediate = typeof self !== \"undefined\" && self.clearImmediate || typeof global !== \"undefined\" && global.clearImmediate || this && this.clearImmediate;","function _typeof2(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof2(obj); }\n\nmodule.exports = function (modules) {\n function __webpack_require__(moduleId) {\n if (installedModules[moduleId]) return installedModules[moduleId].exports;\n var module = installedModules[moduleId] = {\n i: moduleId,\n l: !1,\n exports: {}\n };\n return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__), module.l = !0, module.exports;\n }\n\n var installedModules = {};\n return __webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.i = function (value) {\n return value;\n }, __webpack_require__.d = function (exports, name, getter) {\n __webpack_require__.o(exports, name) || Object.defineProperty(exports, name, {\n configurable: !1,\n enumerable: !0,\n get: getter\n });\n }, __webpack_require__.n = function (module) {\n var getter = module && module.__esModule ? function () {\n return module[\"default\"];\n } : function () {\n return module;\n };\n return __webpack_require__.d(getter, \"a\", getter), getter;\n }, __webpack_require__.o = function (object, property) {\n return Object.prototype.hasOwnProperty.call(object, property);\n }, __webpack_require__.p = \"\", __webpack_require__(__webpack_require__.s = 2);\n}([function (module, exports, __webpack_require__) {\n __webpack_require__(6);\n\n var Component = __webpack_require__(7)(__webpack_require__(4), __webpack_require__(8), null, null);\n\n module.exports = Component.exports;\n}, function (module, __webpack_exports__, __webpack_require__) {\n \"use strict\";\n\n __webpack_require__.d(__webpack_exports__, \"a\", function () {\n return props;\n }), __webpack_require__.d(__webpack_exports__, \"b\", function () {\n return getEventHandlers;\n });\n\n var props = {\n strings: {\n type: Array,\n required: !1,\n \"default\": function _default() {\n return [\"Hello World!\"];\n }\n },\n stringsElement: {\n type: String,\n required: !1,\n \"default\": null\n },\n typeSpeed: {\n type: Number,\n required: !1,\n \"default\": 50\n },\n startDelay: {\n type: Number,\n required: !1,\n \"default\": 0\n },\n backSpeed: {\n type: Number,\n required: !1,\n \"default\": 0\n },\n smartBackspace: {\n type: Boolean,\n required: !1,\n \"default\": !0\n },\n shuffle: {\n type: Boolean,\n required: !1,\n \"default\": !1\n },\n backDelay: {\n type: Number,\n required: !1,\n \"default\": 700\n },\n fadeOut: {\n type: Boolean,\n required: !1,\n \"default\": !1\n },\n fadeOutClass: {\n type: String,\n required: !1,\n \"default\": \"typed-fade-out\"\n },\n fadeOutDelay: {\n type: Number,\n required: !1,\n \"default\": 500\n },\n loop: {\n type: Boolean,\n required: !1,\n \"default\": !1\n },\n loopCount: {\n type: Number,\n required: !1,\n \"default\": 1 / 0\n },\n showCursor: {\n type: Boolean,\n required: !1,\n \"default\": !0\n },\n cursorChar: {\n type: String,\n required: !1,\n \"default\": \"|\"\n },\n autoInsertCss: {\n type: Boolean,\n required: !1,\n \"default\": !0\n },\n attr: {\n type: String,\n required: !1,\n \"default\": null\n },\n bindInputFocusEvents: {\n type: Boolean,\n required: !1,\n \"default\": !1\n },\n contentType: {\n type: String,\n required: !1,\n \"default\": \"html\"\n }\n },\n getEventHandlers = function getEventHandlers(context, typedConfig) {\n return typedConfig.onComplete = function () {\n context.$emit(\"onComplete\");\n }, typedConfig.preStringTyped = function () {\n context.$emit(\"preStringTyped\");\n }, typedConfig.onStringTyped = function () {\n context.$emit(\"onStringTyped\");\n }, typedConfig.onLastStringBackspaced = function () {\n context.$emit(\"onLastStringBackspaced\");\n }, typedConfig.onTypingPaused = function () {\n context.$emit(\"onTypingPaused\");\n }, typedConfig.onTypingResumed = function () {\n context.$emit(\"onTypingResumed\");\n }, typedConfig.onReset = function () {\n context.$emit(\"onReset\");\n }, typedConfig.onStop = function () {\n context.$emit(\"onStop\");\n }, typedConfig.onStart = function () {\n context.$emit(\"onStart\");\n }, typedConfig.onDestroy = function () {\n context.$emit(\"onDestroy\");\n }, typedConfig;\n };\n}, function (module, __webpack_exports__, __webpack_require__) {\n \"use strict\";\n\n function install(Vue) {\n Vue.component(\"vue-typed-js\", __WEBPACK_IMPORTED_MODULE_0__components_VueTypedJs_vue___default.a);\n }\n\n Object.defineProperty(__webpack_exports__, \"__esModule\", {\n value: !0\n }), __webpack_exports__.install = install;\n\n var __WEBPACK_IMPORTED_MODULE_0__components_VueTypedJs_vue__ = __webpack_require__(0),\n __WEBPACK_IMPORTED_MODULE_0__components_VueTypedJs_vue___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0__components_VueTypedJs_vue__);\n\n __webpack_require__.d(__webpack_exports__, \"VueTypedJs\", function () {\n return __WEBPACK_IMPORTED_MODULE_0__components_VueTypedJs_vue___default.a;\n });\n\n var plugin = {\n version: \"0.1.2\",\n install: install\n };\n __webpack_exports__[\"default\"] = plugin;\n var GlobalVue = null;\n \"undefined\" != typeof window ? GlobalVue = window.Vue : \"undefined\" != typeof global && (GlobalVue = global.Vue), GlobalVue && GlobalVue.use(plugin);\n}, function (module, exports, __webpack_require__) {\n (function (module) {\n var __WEBPACK_AMD_DEFINE_FACTORY__,\n __WEBPACK_AMD_DEFINE_ARRAY__,\n __WEBPACK_AMD_DEFINE_RESULT__,\n _typeof = \"function\" == typeof Symbol && \"symbol\" == _typeof2(Symbol.iterator) ? function (obj) {\n return _typeof2(obj);\n } : function (obj) {\n return obj && \"function\" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : _typeof2(obj);\n };\n /*!\n * \n * typed.js - A JavaScript Typing Animation Library\n * Author: Matt Boldt
\n * Version: v2.0.6\n * Url: https://github.com/mattboldt/typed.js\n * License(s): MIT\n * \n */\n\n\n !function (root, factory) {\n \"object\" === _typeof(exports) && \"object\" === _typeof(module) ? module.exports = factory() : (__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_FACTORY__ = factory, void 0 !== (__WEBPACK_AMD_DEFINE_RESULT__ = \"function\" == typeof __WEBPACK_AMD_DEFINE_FACTORY__ ? __WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__) : __WEBPACK_AMD_DEFINE_FACTORY__) && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n }(0, function () {\n return function (modules) {\n function __webpack_require__(moduleId) {\n if (installedModules[moduleId]) return installedModules[moduleId].exports;\n var module = installedModules[moduleId] = {\n exports: {},\n id: moduleId,\n loaded: !1\n };\n return modules[moduleId].call(module.exports, module, module.exports, __webpack_require__), module.loaded = !0, module.exports;\n }\n\n var installedModules = {};\n return __webpack_require__.m = modules, __webpack_require__.c = installedModules, __webpack_require__.p = \"\", __webpack_require__(0);\n }([function (module, exports, __webpack_require__) {\n \"use strict\";\n\n function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) throw new TypeError(\"Cannot call a class as a function\");\n }\n\n Object.defineProperty(exports, \"__esModule\", {\n value: !0\n });\n\n var _createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || !1, descriptor.configurable = !0, \"value\" in descriptor && (descriptor.writable = !0), Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor;\n };\n }(),\n _initializerJs = __webpack_require__(1),\n _htmlParserJs = __webpack_require__(3),\n Typed = function () {\n function Typed(elementId, options) {\n _classCallCheck(this, Typed), _initializerJs.initializer.load(this, options, elementId), this.begin();\n }\n\n return _createClass(Typed, [{\n key: \"toggle\",\n value: function value() {\n this.pause.status ? this.start() : this.stop();\n }\n }, {\n key: \"stop\",\n value: function value() {\n this.typingComplete || this.pause.status || (this.toggleBlinking(!0), this.pause.status = !0, this.options.onStop(this.arrayPos, this));\n }\n }, {\n key: \"start\",\n value: function value() {\n this.typingComplete || this.pause.status && (this.pause.status = !1, this.pause.typewrite ? this.typewrite(this.pause.curString, this.pause.curStrPos) : this.backspace(this.pause.curString, this.pause.curStrPos), this.options.onStart(this.arrayPos, this));\n }\n }, {\n key: \"destroy\",\n value: function value() {\n this.reset(!1), this.options.onDestroy(this);\n }\n }, {\n key: \"reset\",\n value: function value() {\n var restart = arguments.length <= 0 || void 0 === arguments[0] || arguments[0];\n clearInterval(this.timeout), this.replaceText(\"\"), this.cursor && this.cursor.parentNode && (this.cursor.parentNode.removeChild(this.cursor), this.cursor = null), this.strPos = 0, this.arrayPos = 0, this.curLoop = 0, restart && (this.insertCursor(), this.options.onReset(this), this.begin());\n }\n }, {\n key: \"begin\",\n value: function value() {\n var _this = this;\n\n this.typingComplete = !1, this.shuffleStringsIfNeeded(this), this.insertCursor(), this.bindInputFocusEvents && this.bindFocusEvents(), this.timeout = setTimeout(function () {\n _this.currentElContent && 0 !== _this.currentElContent.length ? _this.backspace(_this.currentElContent, _this.currentElContent.length) : _this.typewrite(_this.strings[_this.sequence[_this.arrayPos]], _this.strPos);\n }, this.startDelay);\n }\n }, {\n key: \"typewrite\",\n value: function value(curString, curStrPos) {\n var _this2 = this;\n\n this.fadeOut && this.el.classList.contains(this.fadeOutClass) && (this.el.classList.remove(this.fadeOutClass), this.cursor && this.cursor.classList.remove(this.fadeOutClass));\n var humanize = this.humanizer(this.typeSpeed),\n numChars = 1;\n if (!0 === this.pause.status) return void this.setPauseStatus(curString, curStrPos, !0);\n this.timeout = setTimeout(function () {\n curStrPos = _htmlParserJs.htmlParser.typeHtmlChars(curString, curStrPos, _this2);\n var pauseTime = 0,\n substr = curString.substr(curStrPos);\n\n if (\"^\" === substr.charAt(0) && /^\\^\\d+/.test(substr)) {\n var skip = 1;\n substr = /\\d+/.exec(substr)[0], skip += substr.length, pauseTime = parseInt(substr), _this2.temporaryPause = !0, _this2.options.onTypingPaused(_this2.arrayPos, _this2), curString = curString.substring(0, curStrPos) + curString.substring(curStrPos + skip), _this2.toggleBlinking(!0);\n }\n\n if (\"`\" === substr.charAt(0)) {\n for (; \"`\" !== curString.substr(curStrPos + numChars).charAt(0) && (numChars++, !(curStrPos + numChars > curString.length));) {\n ;\n }\n\n var stringBeforeSkip = curString.substring(0, curStrPos),\n stringSkipped = curString.substring(stringBeforeSkip.length + 1, curStrPos + numChars),\n stringAfterSkip = curString.substring(curStrPos + numChars + 1);\n curString = stringBeforeSkip + stringSkipped + stringAfterSkip, numChars--;\n }\n\n _this2.timeout = setTimeout(function () {\n _this2.toggleBlinking(!1), curStrPos === curString.length ? _this2.doneTyping(curString, curStrPos) : _this2.keepTyping(curString, curStrPos, numChars), _this2.temporaryPause && (_this2.temporaryPause = !1, _this2.options.onTypingResumed(_this2.arrayPos, _this2));\n }, pauseTime);\n }, humanize);\n }\n }, {\n key: \"keepTyping\",\n value: function value(curString, curStrPos, numChars) {\n 0 === curStrPos && (this.toggleBlinking(!1), this.options.preStringTyped(this.arrayPos, this)), curStrPos += numChars;\n var nextString = curString.substr(0, curStrPos);\n this.replaceText(nextString), this.typewrite(curString, curStrPos);\n }\n }, {\n key: \"doneTyping\",\n value: function value(curString, curStrPos) {\n var _this3 = this;\n\n this.options.onStringTyped(this.arrayPos, this), this.toggleBlinking(!0), this.arrayPos === this.strings.length - 1 && (this.complete(), !1 === this.loop || this.curLoop === this.loopCount) || (this.timeout = setTimeout(function () {\n _this3.backspace(curString, curStrPos);\n }, this.backDelay));\n }\n }, {\n key: \"backspace\",\n value: function value(curString, curStrPos) {\n var _this4 = this;\n\n if (!0 === this.pause.status) return void this.setPauseStatus(curString, curStrPos, !0);\n if (this.fadeOut) return this.initFadeOut();\n this.toggleBlinking(!1);\n var humanize = this.humanizer(this.backSpeed);\n this.timeout = setTimeout(function () {\n curStrPos = _htmlParserJs.htmlParser.backSpaceHtmlChars(curString, curStrPos, _this4);\n var curStringAtPosition = curString.substr(0, curStrPos);\n\n if (_this4.replaceText(curStringAtPosition), _this4.smartBackspace) {\n var nextString = _this4.strings[_this4.arrayPos + 1];\n nextString && curStringAtPosition === nextString.substr(0, curStrPos) ? _this4.stopNum = curStrPos : _this4.stopNum = 0;\n }\n\n curStrPos > _this4.stopNum ? (curStrPos--, _this4.backspace(curString, curStrPos)) : curStrPos <= _this4.stopNum && (_this4.arrayPos++, _this4.arrayPos === _this4.strings.length ? (_this4.arrayPos = 0, _this4.options.onLastStringBackspaced(), _this4.shuffleStringsIfNeeded(), _this4.begin()) : _this4.typewrite(_this4.strings[_this4.sequence[_this4.arrayPos]], curStrPos));\n }, humanize);\n }\n }, {\n key: \"complete\",\n value: function value() {\n this.options.onComplete(this), this.loop ? this.curLoop++ : this.typingComplete = !0;\n }\n }, {\n key: \"setPauseStatus\",\n value: function value(curString, curStrPos, isTyping) {\n this.pause.typewrite = isTyping, this.pause.curString = curString, this.pause.curStrPos = curStrPos;\n }\n }, {\n key: \"toggleBlinking\",\n value: function value(isBlinking) {\n if (this.cursor && !this.pause.status && this.cursorBlinking !== isBlinking) {\n this.cursorBlinking = isBlinking;\n var status = isBlinking ? \"infinite\" : 0;\n this.cursor.style.animationIterationCount = status;\n }\n }\n }, {\n key: \"humanizer\",\n value: function value(speed) {\n return Math.round(Math.random() * speed / 2) + speed;\n }\n }, {\n key: \"shuffleStringsIfNeeded\",\n value: function value() {\n this.shuffle && (this.sequence = this.sequence.sort(function () {\n return Math.random() - .5;\n }));\n }\n }, {\n key: \"initFadeOut\",\n value: function value() {\n var _this5 = this;\n\n return this.el.className += \" \" + this.fadeOutClass, this.cursor && (this.cursor.className += \" \" + this.fadeOutClass), setTimeout(function () {\n _this5.arrayPos++, _this5.replaceText(\"\"), _this5.strings.length > _this5.arrayPos ? _this5.typewrite(_this5.strings[_this5.sequence[_this5.arrayPos]], 0) : (_this5.typewrite(_this5.strings[0], 0), _this5.arrayPos = 0);\n }, this.fadeOutDelay);\n }\n }, {\n key: \"replaceText\",\n value: function value(str) {\n this.attr ? this.el.setAttribute(this.attr, str) : this.isInput ? this.el.value = str : \"html\" === this.contentType ? this.el.innerHTML = str : this.el.textContent = str;\n }\n }, {\n key: \"bindFocusEvents\",\n value: function value() {\n var _this6 = this;\n\n this.isInput && (this.el.addEventListener(\"focus\", function (e) {\n _this6.stop();\n }), this.el.addEventListener(\"blur\", function (e) {\n _this6.el.value && 0 !== _this6.el.value.length || _this6.start();\n }));\n }\n }, {\n key: \"insertCursor\",\n value: function value() {\n this.showCursor && (this.cursor || (this.cursor = document.createElement(\"span\"), this.cursor.className = \"typed-cursor\", this.cursor.innerHTML = this.cursorChar, this.el.parentNode && this.el.parentNode.insertBefore(this.cursor, this.el.nextSibling)));\n }\n }]), Typed;\n }();\n\n exports[\"default\"] = Typed, module.exports = exports[\"default\"];\n }, function (module, exports, __webpack_require__) {\n \"use strict\";\n\n function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) throw new TypeError(\"Cannot call a class as a function\");\n }\n\n Object.defineProperty(exports, \"__esModule\", {\n value: !0\n });\n\n var _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n Object.prototype.hasOwnProperty.call(source, key) && (target[key] = source[key]);\n }\n }\n\n return target;\n },\n _createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || !1, descriptor.configurable = !0, \"value\" in descriptor && (descriptor.writable = !0), Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor;\n };\n }(),\n _defaultsJs = __webpack_require__(2),\n _defaultsJs2 = function (obj) {\n return obj && obj.__esModule ? obj : {\n \"default\": obj\n };\n }(_defaultsJs),\n Initializer = function () {\n function Initializer() {\n _classCallCheck(this, Initializer);\n }\n\n return _createClass(Initializer, [{\n key: \"load\",\n value: function value(self, options, elementId) {\n if (self.el = \"string\" == typeof elementId ? document.querySelector(elementId) : elementId, self.options = _extends({}, _defaultsJs2[\"default\"], options), self.isInput = \"input\" === self.el.tagName.toLowerCase(), self.attr = self.options.attr, self.bindInputFocusEvents = self.options.bindInputFocusEvents, self.showCursor = !self.isInput && self.options.showCursor, self.cursorChar = self.options.cursorChar, self.cursorBlinking = !0, self.elContent = self.attr ? self.el.getAttribute(self.attr) : self.el.textContent, self.contentType = self.options.contentType, self.typeSpeed = self.options.typeSpeed, self.startDelay = self.options.startDelay, self.backSpeed = self.options.backSpeed, self.smartBackspace = self.options.smartBackspace, self.backDelay = self.options.backDelay, self.fadeOut = self.options.fadeOut, self.fadeOutClass = self.options.fadeOutClass, self.fadeOutDelay = self.options.fadeOutDelay, self.isPaused = !1, self.strings = self.options.strings.map(function (s) {\n return s.trim();\n }), \"string\" == typeof self.options.stringsElement ? self.stringsElement = document.querySelector(self.options.stringsElement) : self.stringsElement = self.options.stringsElement, self.stringsElement) {\n self.strings = [], self.stringsElement.style.display = \"none\";\n var strings = Array.prototype.slice.apply(self.stringsElement.children),\n stringsLength = strings.length;\n if (stringsLength) for (var i = 0; i < stringsLength; i += 1) {\n var stringEl = strings[i];\n self.strings.push(stringEl.innerHTML.trim());\n }\n }\n\n self.strPos = 0, self.arrayPos = 0, self.stopNum = 0, self.loop = self.options.loop, self.loopCount = self.options.loopCount, self.curLoop = 0, self.shuffle = self.options.shuffle, self.sequence = [], self.pause = {\n status: !1,\n typewrite: !0,\n curString: \"\",\n curStrPos: 0\n }, self.typingComplete = !1;\n\n for (var i in self.strings) {\n self.sequence[i] = i;\n }\n\n self.currentElContent = this.getCurrentElContent(self), self.autoInsertCss = self.options.autoInsertCss, this.appendAnimationCss(self);\n }\n }, {\n key: \"getCurrentElContent\",\n value: function value(self) {\n return self.attr ? self.el.getAttribute(self.attr) : self.isInput ? self.el.value : \"html\" === self.contentType ? self.el.innerHTML : self.el.textContent;\n }\n }, {\n key: \"appendAnimationCss\",\n value: function value(self) {\n if (self.autoInsertCss && self.showCursor && self.fadeOut) {\n var css = document.createElement(\"style\");\n css.type = \"text/css\";\n var innerCss = \"\";\n self.showCursor && (innerCss += \"\\n .typed-cursor{\\n opacity: 1;\\n animation: typedjsBlink 0.7s infinite;\\n -webkit-animation: typedjsBlink 0.7s infinite;\\n animation: typedjsBlink 0.7s infinite;\\n }\\n @keyframes typedjsBlink{\\n 50% { opacity: 0.0; }\\n }\\n @-webkit-keyframes typedjsBlink{\\n 0% { opacity: 1; }\\n 50% { opacity: 0.0; }\\n 100% { opacity: 1; }\\n }\\n \"), self.fadeOut && (innerCss += \"\\n .typed-fade-out{\\n opacity: 0;\\n transition: opacity .25s;\\n -webkit-animation: 0;\\n animation: 0;\\n }\\n \"), 0 !== css.length && (css.innerHTML = innerCss, document.body.appendChild(css));\n }\n }\n }]), Initializer;\n }();\n\n exports[\"default\"] = Initializer;\n var initializer = new Initializer();\n exports.initializer = initializer;\n }, function (module, exports) {\n \"use strict\";\n\n Object.defineProperty(exports, \"__esModule\", {\n value: !0\n });\n var defaults = {\n strings: [\"These are the default values...\", \"You know what you should do?\", \"Use your own!\", \"Have a great day!\"],\n stringsElement: null,\n typeSpeed: 0,\n startDelay: 0,\n backSpeed: 0,\n smartBackspace: !0,\n shuffle: !1,\n backDelay: 700,\n fadeOut: !1,\n fadeOutClass: \"typed-fade-out\",\n fadeOutDelay: 500,\n loop: !1,\n loopCount: 1 / 0,\n showCursor: !0,\n cursorChar: \"|\",\n autoInsertCss: !0,\n attr: null,\n bindInputFocusEvents: !1,\n contentType: \"html\",\n onComplete: function onComplete(self) {},\n preStringTyped: function preStringTyped(arrayPos, self) {},\n onStringTyped: function onStringTyped(arrayPos, self) {},\n onLastStringBackspaced: function onLastStringBackspaced(self) {},\n onTypingPaused: function onTypingPaused(arrayPos, self) {},\n onTypingResumed: function onTypingResumed(arrayPos, self) {},\n onReset: function onReset(self) {},\n onStop: function onStop(arrayPos, self) {},\n onStart: function onStart(arrayPos, self) {},\n onDestroy: function onDestroy(self) {}\n };\n exports[\"default\"] = defaults, module.exports = exports[\"default\"];\n }, function (module, exports) {\n \"use strict\";\n\n function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) throw new TypeError(\"Cannot call a class as a function\");\n }\n\n Object.defineProperty(exports, \"__esModule\", {\n value: !0\n });\n\n var _createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || !1, descriptor.configurable = !0, \"value\" in descriptor && (descriptor.writable = !0), Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n return protoProps && defineProperties(Constructor.prototype, protoProps), staticProps && defineProperties(Constructor, staticProps), Constructor;\n };\n }(),\n HTMLParser = function () {\n function HTMLParser() {\n _classCallCheck(this, HTMLParser);\n }\n\n return _createClass(HTMLParser, [{\n key: \"typeHtmlChars\",\n value: function value(curString, curStrPos, self) {\n if (\"html\" !== self.contentType) return curStrPos;\n var curChar = curString.substr(curStrPos).charAt(0);\n\n if (\"<\" === curChar || \"&\" === curChar) {\n var endTag = \"\";\n\n for (endTag = \"<\" === curChar ? \">\" : \";\"; curString.substr(curStrPos + 1).charAt(0) !== endTag && !(++curStrPos + 1 > curString.length);) {\n ;\n }\n\n curStrPos++;\n }\n\n return curStrPos;\n }\n }, {\n key: \"backSpaceHtmlChars\",\n value: function value(curString, curStrPos, self) {\n if (\"html\" !== self.contentType) return curStrPos;\n var curChar = curString.substr(curStrPos).charAt(0);\n\n if (\">\" === curChar || \";\" === curChar) {\n var endTag = \"\";\n\n for (endTag = \">\" === curChar ? \"<\" : \"&\"; curString.substr(curStrPos - 1).charAt(0) !== endTag && !(--curStrPos < 0);) {\n ;\n }\n\n curStrPos--;\n }\n\n return curStrPos;\n }\n }]), HTMLParser;\n }();\n\n exports[\"default\"] = HTMLParser;\n var htmlParser = new HTMLParser();\n exports.htmlParser = htmlParser;\n }]);\n });\n }).call(exports, __webpack_require__(5)(module));\n}, function (module, __webpack_exports__, __webpack_require__) {\n \"use strict\";\n\n Object.defineProperty(__webpack_exports__, \"__esModule\", {\n value: !0\n });\n\n var __WEBPACK_IMPORTED_MODULE_0_typed_js__ = __webpack_require__(3),\n __WEBPACK_IMPORTED_MODULE_0_typed_js___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_typed_js__),\n __WEBPACK_IMPORTED_MODULE_1__config_typed_component_config__ = __webpack_require__(1);\n\n __webpack_exports__[\"default\"] = {\n name: \"vue-typed-js\",\n props: __WEBPACK_IMPORTED_MODULE_1__config_typed_component_config__.a,\n data: function data() {\n return {\n typedObj: null\n };\n },\n methods: {\n throwError: function throwError(message) {\n throw new TypeError(message);\n },\n initTypedJS: function initTypedJS() {\n var $typed = this.$refs.typedElement.querySelector(\".typing\");\n if (this.$slots[\"default\"].length > 1) this.throwError(\"Just one child element allowed inside <\" + this.$options.name + \"> component.\");else if (1 === this.$slots[\"default\"].length) {\n var typedConfig = this.$props;\n typedConfig = __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_1__config_typed_component_config__.b)(this, typedConfig), this.typedObj = new __WEBPACK_IMPORTED_MODULE_0_typed_js___default.a($typed, typedConfig);\n }\n }\n },\n mounted: function mounted() {\n this.initTypedJS();\n }\n };\n}, function (module, exports) {\n module.exports = function (module) {\n return module.webpackPolyfill || (module.deprecate = function () {}, module.paths = [], module.children || (module.children = []), Object.defineProperty(module, \"loaded\", {\n enumerable: !0,\n get: function get() {\n return module.l;\n }\n }), Object.defineProperty(module, \"id\", {\n enumerable: !0,\n get: function get() {\n return module.i;\n }\n }), module.webpackPolyfill = 1), module;\n };\n}, function (module, exports) {}, function (module, exports) {\n module.exports = function (rawScriptExports, compiledTemplate, scopeId, cssModules) {\n var esModule,\n scriptExports = rawScriptExports = rawScriptExports || {},\n type = _typeof2(rawScriptExports[\"default\"]);\n\n \"object\" !== type && \"function\" !== type || (esModule = rawScriptExports, scriptExports = rawScriptExports[\"default\"]);\n var options = \"function\" == typeof scriptExports ? scriptExports.options : scriptExports;\n\n if (compiledTemplate && (options.render = compiledTemplate.render, options.staticRenderFns = compiledTemplate.staticRenderFns), scopeId && (options._scopeId = scopeId), cssModules) {\n var computed = options.computed || (options.computed = {});\n Object.keys(cssModules).forEach(function (key) {\n var module = cssModules[key];\n\n computed[key] = function () {\n return module;\n };\n });\n }\n\n return {\n esModule: esModule,\n exports: scriptExports,\n options: options\n };\n };\n}, function (module, exports) {\n module.exports = {\n render: function render() {\n var _vm = this,\n _h = _vm.$createElement;\n\n return (_vm._self._c || _h)(\"div\", {\n ref: \"typedElement\",\n staticClass: \"typed-element\"\n }, [_vm._t(\"default\")], 2);\n },\n staticRenderFns: []\n };\n}]);","function _typeof2(obj) { \"@babel/helpers - typeof\"; if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof2 = function _typeof2(obj) { return typeof obj; }; } else { _typeof2 = function _typeof2(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof2(obj); }\n\n/*!\n* sweetalert2 v10.16.9\n* Released under the MIT License.\n*/\n(function (global, factory) {\n (typeof exports === \"undefined\" ? \"undefined\" : _typeof2(exports)) === 'object' && typeof module !== 'undefined' ? module.exports = factory() : typeof define === 'function' && define.amd ? define(factory) : (global = global || self, global.Sweetalert2 = factory());\n})(this, function () {\n 'use strict';\n\n function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function _typeof(obj) {\n return typeof obj;\n };\n } else {\n _typeof = function _typeof(obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n }\n\n function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n }\n\n function _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n function _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n }\n\n function _extends() {\n _extends = Object.assign || function (target) {\n for (var i = 1; i < arguments.length; i++) {\n var source = arguments[i];\n\n for (var key in source) {\n if (Object.prototype.hasOwnProperty.call(source, key)) {\n target[key] = source[key];\n }\n }\n }\n\n return target;\n };\n\n return _extends.apply(this, arguments);\n }\n\n function _inherits(subClass, superClass) {\n if (typeof superClass !== \"function\" && superClass !== null) {\n throw new TypeError(\"Super expression must either be null or a function\");\n }\n\n subClass.prototype = Object.create(superClass && superClass.prototype, {\n constructor: {\n value: subClass,\n writable: true,\n configurable: true\n }\n });\n if (superClass) _setPrototypeOf(subClass, superClass);\n }\n\n function _getPrototypeOf(o) {\n _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) {\n return o.__proto__ || Object.getPrototypeOf(o);\n };\n return _getPrototypeOf(o);\n }\n\n function _setPrototypeOf(o, p) {\n _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) {\n o.__proto__ = p;\n return o;\n };\n\n return _setPrototypeOf(o, p);\n }\n\n function _isNativeReflectConstruct() {\n if (typeof Reflect === \"undefined\" || !Reflect.construct) return false;\n if (Reflect.construct.sham) return false;\n if (typeof Proxy === \"function\") return true;\n\n try {\n Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {}));\n return true;\n } catch (e) {\n return false;\n }\n }\n\n function _construct(Parent, args, Class) {\n if (_isNativeReflectConstruct()) {\n _construct = Reflect.construct;\n } else {\n _construct = function _construct(Parent, args, Class) {\n var a = [null];\n a.push.apply(a, args);\n var Constructor = Function.bind.apply(Parent, a);\n var instance = new Constructor();\n if (Class) _setPrototypeOf(instance, Class.prototype);\n return instance;\n };\n }\n\n return _construct.apply(null, arguments);\n }\n\n function _assertThisInitialized(self) {\n if (self === void 0) {\n throw new ReferenceError(\"this hasn't been initialised - super() hasn't been called\");\n }\n\n return self;\n }\n\n function _possibleConstructorReturn(self, call) {\n if (call && (_typeof2(call) === \"object\" || typeof call === \"function\")) {\n return call;\n }\n\n return _assertThisInitialized(self);\n }\n\n function _createSuper(Derived) {\n var hasNativeReflectConstruct = _isNativeReflectConstruct();\n\n return function _createSuperInternal() {\n var Super = _getPrototypeOf(Derived),\n result;\n\n if (hasNativeReflectConstruct) {\n var NewTarget = _getPrototypeOf(this).constructor;\n\n result = Reflect.construct(Super, arguments, NewTarget);\n } else {\n result = Super.apply(this, arguments);\n }\n\n return _possibleConstructorReturn(this, result);\n };\n }\n\n function _superPropBase(object, property) {\n while (!Object.prototype.hasOwnProperty.call(object, property)) {\n object = _getPrototypeOf(object);\n if (object === null) break;\n }\n\n return object;\n }\n\n function _get(target, property, receiver) {\n if (typeof Reflect !== \"undefined\" && Reflect.get) {\n _get = Reflect.get;\n } else {\n _get = function _get(target, property, receiver) {\n var base = _superPropBase(target, property);\n\n if (!base) return;\n var desc = Object.getOwnPropertyDescriptor(base, property);\n\n if (desc.get) {\n return desc.get.call(receiver);\n }\n\n return desc.value;\n };\n }\n\n return _get(target, property, receiver || target);\n }\n\n var consolePrefix = 'SweetAlert2:';\n /**\n * Filter the unique values into a new array\n * @param arr\n */\n\n var uniqueArray = function uniqueArray(arr) {\n var result = [];\n\n for (var i = 0; i < arr.length; i++) {\n if (result.indexOf(arr[i]) === -1) {\n result.push(arr[i]);\n }\n }\n\n return result;\n };\n /**\n * Capitalize the first letter of a string\n * @param str\n */\n\n\n var capitalizeFirstLetter = function capitalizeFirstLetter(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n };\n /**\n * Returns the array of object values (Object.values isn't supported in IE11)\n * @param obj\n */\n\n\n var objectValues = function objectValues(obj) {\n return Object.keys(obj).map(function (key) {\n return obj[key];\n });\n };\n /**\n * Convert NodeList to Array\n * @param nodeList\n */\n\n\n var toArray = function toArray(nodeList) {\n return Array.prototype.slice.call(nodeList);\n };\n /**\n * Standardise console warnings\n * @param message\n */\n\n\n var warn = function warn(message) {\n console.warn(\"\".concat(consolePrefix, \" \").concat(_typeof(message) === 'object' ? message.join(' ') : message));\n };\n /**\n * Standardise console errors\n * @param message\n */\n\n\n var error = function error(message) {\n console.error(\"\".concat(consolePrefix, \" \").concat(message));\n };\n /**\n * Private global state for `warnOnce`\n * @type {Array}\n * @private\n */\n\n\n var previousWarnOnceMessages = [];\n /**\n * Show a console warning, but only if it hasn't already been shown\n * @param message\n */\n\n var warnOnce = function warnOnce(message) {\n if (!(previousWarnOnceMessages.indexOf(message) !== -1)) {\n previousWarnOnceMessages.push(message);\n warn(message);\n }\n };\n /**\n * Show a one-time console warning about deprecated params/methods\n */\n\n\n var warnAboutDeprecation = function warnAboutDeprecation(deprecatedParam, useInstead) {\n warnOnce(\"\\\"\".concat(deprecatedParam, \"\\\" is deprecated and will be removed in the next major release. Please use \\\"\").concat(useInstead, \"\\\" instead.\"));\n };\n /**\n * If `arg` is a function, call it (with no arguments or context) and return the result.\n * Otherwise, just pass the value through\n * @param arg\n */\n\n\n var callIfFunction = function callIfFunction(arg) {\n return typeof arg === 'function' ? arg() : arg;\n };\n\n var hasToPromiseFn = function hasToPromiseFn(arg) {\n return arg && typeof arg.toPromise === 'function';\n };\n\n var asPromise = function asPromise(arg) {\n return hasToPromiseFn(arg) ? arg.toPromise() : Promise.resolve(arg);\n };\n\n var isPromise = function isPromise(arg) {\n return arg && Promise.resolve(arg) === arg;\n };\n\n var DismissReason = Object.freeze({\n cancel: 'cancel',\n backdrop: 'backdrop',\n close: 'close',\n esc: 'esc',\n timer: 'timer'\n });\n\n var isJqueryElement = function isJqueryElement(elem) {\n return _typeof(elem) === 'object' && elem.jquery;\n };\n\n var isElement = function isElement(elem) {\n return elem instanceof Element || isJqueryElement(elem);\n };\n\n var argsToParams = function argsToParams(args) {\n var params = {};\n\n if (_typeof(args[0]) === 'object' && !isElement(args[0])) {\n _extends(params, args[0]);\n } else {\n ['title', 'html', 'icon'].forEach(function (name, index) {\n var arg = args[index];\n\n if (typeof arg === 'string' || isElement(arg)) {\n params[name] = arg;\n } else if (arg !== undefined) {\n error(\"Unexpected type of \".concat(name, \"! Expected \\\"string\\\" or \\\"Element\\\", got \").concat(_typeof(arg)));\n }\n });\n }\n\n return params;\n };\n\n var swalPrefix = 'swal2-';\n\n var prefix = function prefix(items) {\n var result = {};\n\n for (var i in items) {\n result[items[i]] = swalPrefix + items[i];\n }\n\n return result;\n };\n\n var swalClasses = prefix(['container', 'shown', 'height-auto', 'iosfix', 'popup', 'modal', 'no-backdrop', 'no-transition', 'toast', 'toast-shown', 'show', 'hide', 'close', 'title', 'header', 'content', 'html-container', 'actions', 'confirm', 'deny', 'cancel', 'footer', 'icon', 'icon-content', 'image', 'input', 'file', 'range', 'select', 'radio', 'checkbox', 'label', 'textarea', 'inputerror', 'input-label', 'validation-message', 'progress-steps', 'active-progress-step', 'progress-step', 'progress-step-line', 'loader', 'loading', 'styled', 'top', 'top-start', 'top-end', 'top-left', 'top-right', 'center', 'center-start', 'center-end', 'center-left', 'center-right', 'bottom', 'bottom-start', 'bottom-end', 'bottom-left', 'bottom-right', 'grow-row', 'grow-column', 'grow-fullscreen', 'rtl', 'timer-progress-bar', 'timer-progress-bar-container', 'scrollbar-measure', 'icon-success', 'icon-warning', 'icon-info', 'icon-question', 'icon-error']);\n var iconTypes = prefix(['success', 'warning', 'info', 'question', 'error']);\n\n var getContainer = function getContainer() {\n return document.body.querySelector(\".\".concat(swalClasses.container));\n };\n\n var elementBySelector = function elementBySelector(selectorString) {\n var container = getContainer();\n return container ? container.querySelector(selectorString) : null;\n };\n\n var elementByClass = function elementByClass(className) {\n return elementBySelector(\".\".concat(className));\n };\n\n var getPopup = function getPopup() {\n return elementByClass(swalClasses.popup);\n };\n\n var getIcon = function getIcon() {\n return elementByClass(swalClasses.icon);\n };\n\n var getTitle = function getTitle() {\n return elementByClass(swalClasses.title);\n };\n\n var getContent = function getContent() {\n return elementByClass(swalClasses.content);\n };\n\n var getHtmlContainer = function getHtmlContainer() {\n return elementByClass(swalClasses['html-container']);\n };\n\n var getImage = function getImage() {\n return elementByClass(swalClasses.image);\n };\n\n var getProgressSteps = function getProgressSteps() {\n return elementByClass(swalClasses['progress-steps']);\n };\n\n var getValidationMessage = function getValidationMessage() {\n return elementByClass(swalClasses['validation-message']);\n };\n\n var getConfirmButton = function getConfirmButton() {\n return elementBySelector(\".\".concat(swalClasses.actions, \" .\").concat(swalClasses.confirm));\n };\n\n var getDenyButton = function getDenyButton() {\n return elementBySelector(\".\".concat(swalClasses.actions, \" .\").concat(swalClasses.deny));\n };\n\n var getInputLabel = function getInputLabel() {\n return elementByClass(swalClasses['input-label']);\n };\n\n var getLoader = function getLoader() {\n return elementBySelector(\".\".concat(swalClasses.loader));\n };\n\n var getCancelButton = function getCancelButton() {\n return elementBySelector(\".\".concat(swalClasses.actions, \" .\").concat(swalClasses.cancel));\n };\n\n var getActions = function getActions() {\n return elementByClass(swalClasses.actions);\n };\n\n var getHeader = function getHeader() {\n return elementByClass(swalClasses.header);\n };\n\n var getFooter = function getFooter() {\n return elementByClass(swalClasses.footer);\n };\n\n var getTimerProgressBar = function getTimerProgressBar() {\n return elementByClass(swalClasses['timer-progress-bar']);\n };\n\n var getCloseButton = function getCloseButton() {\n return elementByClass(swalClasses.close);\n }; // https://github.com/jkup/focusable/blob/master/index.js\n\n\n var focusable = \"\\n a[href],\\n area[href],\\n input:not([disabled]),\\n select:not([disabled]),\\n textarea:not([disabled]),\\n button:not([disabled]),\\n iframe,\\n object,\\n embed,\\n [tabindex=\\\"0\\\"],\\n [contenteditable],\\n audio[controls],\\n video[controls],\\n summary\\n\";\n\n var getFocusableElements = function getFocusableElements() {\n var focusableElementsWithTabindex = toArray(getPopup().querySelectorAll('[tabindex]:not([tabindex=\"-1\"]):not([tabindex=\"0\"])')) // sort according to tabindex\n .sort(function (a, b) {\n a = parseInt(a.getAttribute('tabindex'));\n b = parseInt(b.getAttribute('tabindex'));\n\n if (a > b) {\n return 1;\n } else if (a < b) {\n return -1;\n }\n\n return 0;\n });\n var otherFocusableElements = toArray(getPopup().querySelectorAll(focusable)).filter(function (el) {\n return el.getAttribute('tabindex') !== '-1';\n });\n return uniqueArray(focusableElementsWithTabindex.concat(otherFocusableElements)).filter(function (el) {\n return isVisible(el);\n });\n };\n\n var isModal = function isModal() {\n return !isToast() && !document.body.classList.contains(swalClasses['no-backdrop']);\n };\n\n var isToast = function isToast() {\n return document.body.classList.contains(swalClasses['toast-shown']);\n };\n\n var isLoading = function isLoading() {\n return getPopup().hasAttribute('data-loading');\n };\n\n var states = {\n previousBodyPadding: null\n };\n\n var setInnerHtml = function setInnerHtml(elem, html) {\n // #1926\n elem.textContent = '';\n\n if (html) {\n var parser = new DOMParser();\n var parsed = parser.parseFromString(html, \"text/html\");\n toArray(parsed.querySelector('head').childNodes).forEach(function (child) {\n elem.appendChild(child);\n });\n toArray(parsed.querySelector('body').childNodes).forEach(function (child) {\n elem.appendChild(child);\n });\n }\n };\n\n var hasClass = function hasClass(elem, className) {\n if (!className) {\n return false;\n }\n\n var classList = className.split(/\\s+/);\n\n for (var i = 0; i < classList.length; i++) {\n if (!elem.classList.contains(classList[i])) {\n return false;\n }\n }\n\n return true;\n };\n\n var removeCustomClasses = function removeCustomClasses(elem, params) {\n toArray(elem.classList).forEach(function (className) {\n if (!(objectValues(swalClasses).indexOf(className) !== -1) && !(objectValues(iconTypes).indexOf(className) !== -1) && !(objectValues(params.showClass).indexOf(className) !== -1)) {\n elem.classList.remove(className);\n }\n });\n };\n\n var applyCustomClass = function applyCustomClass(elem, params, className) {\n removeCustomClasses(elem, params);\n\n if (params.customClass && params.customClass[className]) {\n if (typeof params.customClass[className] !== 'string' && !params.customClass[className].forEach) {\n return warn(\"Invalid type of customClass.\".concat(className, \"! Expected string or iterable object, got \\\"\").concat(_typeof(params.customClass[className]), \"\\\"\"));\n }\n\n addClass(elem, params.customClass[className]);\n }\n };\n\n function getInput(content, inputType) {\n if (!inputType) {\n return null;\n }\n\n switch (inputType) {\n case 'select':\n case 'textarea':\n case 'file':\n return getChildByClass(content, swalClasses[inputType]);\n\n case 'checkbox':\n return content.querySelector(\".\".concat(swalClasses.checkbox, \" input\"));\n\n case 'radio':\n return content.querySelector(\".\".concat(swalClasses.radio, \" input:checked\")) || content.querySelector(\".\".concat(swalClasses.radio, \" input:first-child\"));\n\n case 'range':\n return content.querySelector(\".\".concat(swalClasses.range, \" input\"));\n\n default:\n return getChildByClass(content, swalClasses.input);\n }\n }\n\n var focusInput = function focusInput(input) {\n input.focus(); // place cursor at end of text in text input\n\n if (input.type !== 'file') {\n // http://stackoverflow.com/a/2345915\n var val = input.value;\n input.value = '';\n input.value = val;\n }\n };\n\n var toggleClass = function toggleClass(target, classList, condition) {\n if (!target || !classList) {\n return;\n }\n\n if (typeof classList === 'string') {\n classList = classList.split(/\\s+/).filter(Boolean);\n }\n\n classList.forEach(function (className) {\n if (target.forEach) {\n target.forEach(function (elem) {\n condition ? elem.classList.add(className) : elem.classList.remove(className);\n });\n } else {\n condition ? target.classList.add(className) : target.classList.remove(className);\n }\n });\n };\n\n var addClass = function addClass(target, classList) {\n toggleClass(target, classList, true);\n };\n\n var removeClass = function removeClass(target, classList) {\n toggleClass(target, classList, false);\n };\n\n var getChildByClass = function getChildByClass(elem, className) {\n for (var i = 0; i < elem.childNodes.length; i++) {\n if (hasClass(elem.childNodes[i], className)) {\n return elem.childNodes[i];\n }\n }\n };\n\n var applyNumericalStyle = function applyNumericalStyle(elem, property, value) {\n if (value === \"\".concat(parseInt(value))) {\n value = parseInt(value);\n }\n\n if (value || parseInt(value) === 0) {\n elem.style[property] = typeof value === 'number' ? \"\".concat(value, \"px\") : value;\n } else {\n elem.style.removeProperty(property);\n }\n };\n\n var show = function show(elem) {\n var display = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 'flex';\n elem.style.display = display;\n };\n\n var hide = function hide(elem) {\n elem.style.display = 'none';\n };\n\n var setStyle = function setStyle(parent, selector, property, value) {\n var el = parent.querySelector(selector);\n\n if (el) {\n el.style[property] = value;\n }\n };\n\n var toggle = function toggle(elem, condition, display) {\n condition ? show(elem, display) : hide(elem);\n }; // borrowed from jquery $(elem).is(':visible') implementation\n\n\n var isVisible = function isVisible(elem) {\n return !!(elem && (elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length));\n };\n\n var allButtonsAreHidden = function allButtonsAreHidden() {\n return !isVisible(getConfirmButton()) && !isVisible(getDenyButton()) && !isVisible(getCancelButton());\n };\n\n var isScrollable = function isScrollable(elem) {\n return !!(elem.scrollHeight > elem.clientHeight);\n }; // borrowed from https://stackoverflow.com/a/46352119\n\n\n var hasCssAnimation = function hasCssAnimation(elem) {\n var style = window.getComputedStyle(elem);\n var animDuration = parseFloat(style.getPropertyValue('animation-duration') || '0');\n var transDuration = parseFloat(style.getPropertyValue('transition-duration') || '0');\n return animDuration > 0 || transDuration > 0;\n };\n\n var contains = function contains(haystack, needle) {\n if (typeof haystack.contains === 'function') {\n return haystack.contains(needle);\n }\n };\n\n var animateTimerProgressBar = function animateTimerProgressBar(timer) {\n var reset = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n var timerProgressBar = getTimerProgressBar();\n\n if (isVisible(timerProgressBar)) {\n if (reset) {\n timerProgressBar.style.transition = 'none';\n timerProgressBar.style.width = '100%';\n }\n\n setTimeout(function () {\n timerProgressBar.style.transition = \"width \".concat(timer / 1000, \"s linear\");\n timerProgressBar.style.width = '0%';\n }, 10);\n }\n };\n\n var stopTimerProgressBar = function stopTimerProgressBar() {\n var timerProgressBar = getTimerProgressBar();\n var timerProgressBarWidth = parseInt(window.getComputedStyle(timerProgressBar).width);\n timerProgressBar.style.removeProperty('transition');\n timerProgressBar.style.width = '100%';\n var timerProgressBarFullWidth = parseInt(window.getComputedStyle(timerProgressBar).width);\n var timerProgressBarPercent = parseInt(timerProgressBarWidth / timerProgressBarFullWidth * 100);\n timerProgressBar.style.removeProperty('transition');\n timerProgressBar.style.width = \"\".concat(timerProgressBarPercent, \"%\");\n }; // Detect Node env\n\n\n var isNodeEnv = function isNodeEnv() {\n return typeof window === 'undefined' || typeof document === 'undefined';\n };\n\n var sweetHTML = \"\\n \\n\").replace(/(^|\\n)\\s*/g, '');\n\n var resetOldContainer = function resetOldContainer() {\n var oldContainer = getContainer();\n\n if (!oldContainer) {\n return false;\n }\n\n oldContainer.parentNode.removeChild(oldContainer);\n removeClass([document.documentElement, document.body], [swalClasses['no-backdrop'], swalClasses['toast-shown'], swalClasses['has-column']]);\n return true;\n };\n\n var oldInputVal; // IE11 workaround, see #1109 for details\n\n var resetValidationMessage = function resetValidationMessage(e) {\n if (Swal.isVisible() && oldInputVal !== e.target.value) {\n Swal.resetValidationMessage();\n }\n\n oldInputVal = e.target.value;\n };\n\n var addInputChangeListeners = function addInputChangeListeners() {\n var content = getContent();\n var input = getChildByClass(content, swalClasses.input);\n var file = getChildByClass(content, swalClasses.file);\n var range = content.querySelector(\".\".concat(swalClasses.range, \" input\"));\n var rangeOutput = content.querySelector(\".\".concat(swalClasses.range, \" output\"));\n var select = getChildByClass(content, swalClasses.select);\n var checkbox = content.querySelector(\".\".concat(swalClasses.checkbox, \" input\"));\n var textarea = getChildByClass(content, swalClasses.textarea);\n input.oninput = resetValidationMessage;\n file.onchange = resetValidationMessage;\n select.onchange = resetValidationMessage;\n checkbox.onchange = resetValidationMessage;\n textarea.oninput = resetValidationMessage;\n\n range.oninput = function (e) {\n resetValidationMessage(e);\n rangeOutput.value = range.value;\n };\n\n range.onchange = function (e) {\n resetValidationMessage(e);\n range.nextSibling.value = range.value;\n };\n };\n\n var getTarget = function getTarget(target) {\n return typeof target === 'string' ? document.querySelector(target) : target;\n };\n\n var setupAccessibility = function setupAccessibility(params) {\n var popup = getPopup();\n popup.setAttribute('role', params.toast ? 'alert' : 'dialog');\n popup.setAttribute('aria-live', params.toast ? 'polite' : 'assertive');\n\n if (!params.toast) {\n popup.setAttribute('aria-modal', 'true');\n }\n };\n\n var setupRTL = function setupRTL(targetElement) {\n if (window.getComputedStyle(targetElement).direction === 'rtl') {\n addClass(getContainer(), swalClasses.rtl);\n }\n };\n /*\n * Add modal + backdrop to DOM\n */\n\n\n var init = function init(params) {\n // Clean up the old popup container if it exists\n var oldContainerExisted = resetOldContainer();\n /* istanbul ignore if */\n\n if (isNodeEnv()) {\n error('SweetAlert2 requires document to initialize');\n return;\n }\n\n var container = document.createElement('div');\n container.className = swalClasses.container;\n\n if (oldContainerExisted) {\n addClass(container, swalClasses['no-transition']);\n }\n\n setInnerHtml(container, sweetHTML);\n var targetElement = getTarget(params.target);\n targetElement.appendChild(container);\n setupAccessibility(params);\n setupRTL(targetElement);\n addInputChangeListeners();\n };\n\n var parseHtmlToContainer = function parseHtmlToContainer(param, target) {\n // DOM element\n if (param instanceof HTMLElement) {\n target.appendChild(param); // Object\n } else if (_typeof(param) === 'object') {\n handleObject(param, target); // Plain string\n } else if (param) {\n setInnerHtml(target, param);\n }\n };\n\n var handleObject = function handleObject(param, target) {\n // JQuery element(s)\n if (param.jquery) {\n handleJqueryElem(target, param); // For other objects use their string representation\n } else {\n setInnerHtml(target, param.toString());\n }\n };\n\n var handleJqueryElem = function handleJqueryElem(target, elem) {\n target.textContent = '';\n\n if (0 in elem) {\n for (var i = 0; (i in elem); i++) {\n target.appendChild(elem[i].cloneNode(true));\n }\n } else {\n target.appendChild(elem.cloneNode(true));\n }\n };\n\n var animationEndEvent = function () {\n // Prevent run in Node env\n\n /* istanbul ignore if */\n if (isNodeEnv()) {\n return false;\n }\n\n var testEl = document.createElement('div');\n var transEndEventNames = {\n WebkitAnimation: 'webkitAnimationEnd',\n OAnimation: 'oAnimationEnd oanimationend',\n animation: 'animationend'\n };\n\n for (var i in transEndEventNames) {\n if (Object.prototype.hasOwnProperty.call(transEndEventNames, i) && typeof testEl.style[i] !== 'undefined') {\n return transEndEventNames[i];\n }\n }\n\n return false;\n }(); // https://github.com/twbs/bootstrap/blob/master/js/src/modal.js\n\n\n var measureScrollbar = function measureScrollbar() {\n var scrollDiv = document.createElement('div');\n scrollDiv.className = swalClasses['scrollbar-measure'];\n document.body.appendChild(scrollDiv);\n var scrollbarWidth = scrollDiv.getBoundingClientRect().width - scrollDiv.clientWidth;\n document.body.removeChild(scrollDiv);\n return scrollbarWidth;\n };\n\n var renderActions = function renderActions(instance, params) {\n var actions = getActions();\n var loader = getLoader();\n var confirmButton = getConfirmButton();\n var denyButton = getDenyButton();\n var cancelButton = getCancelButton(); // Actions (buttons) wrapper\n\n if (!params.showConfirmButton && !params.showDenyButton && !params.showCancelButton) {\n hide(actions);\n } // Custom class\n\n\n applyCustomClass(actions, params, 'actions'); // Render buttons\n\n renderButton(confirmButton, 'confirm', params);\n renderButton(denyButton, 'deny', params);\n renderButton(cancelButton, 'cancel', params);\n handleButtonsStyling(confirmButton, denyButton, cancelButton, params);\n\n if (params.reverseButtons) {\n actions.insertBefore(cancelButton, loader);\n actions.insertBefore(denyButton, loader);\n actions.insertBefore(confirmButton, loader);\n } // Loader\n\n\n setInnerHtml(loader, params.loaderHtml);\n applyCustomClass(loader, params, 'loader');\n };\n\n function handleButtonsStyling(confirmButton, denyButton, cancelButton, params) {\n if (!params.buttonsStyling) {\n return removeClass([confirmButton, denyButton, cancelButton], swalClasses.styled);\n }\n\n addClass([confirmButton, denyButton, cancelButton], swalClasses.styled); // Buttons background colors\n\n if (params.confirmButtonColor) {\n confirmButton.style.backgroundColor = params.confirmButtonColor;\n }\n\n if (params.denyButtonColor) {\n denyButton.style.backgroundColor = params.denyButtonColor;\n }\n\n if (params.cancelButtonColor) {\n cancelButton.style.backgroundColor = params.cancelButtonColor;\n }\n }\n\n function renderButton(button, buttonType, params) {\n toggle(button, params[\"show\".concat(capitalizeFirstLetter(buttonType), \"Button\")], 'inline-block');\n setInnerHtml(button, params[\"\".concat(buttonType, \"ButtonText\")]); // Set caption text\n\n button.setAttribute('aria-label', params[\"\".concat(buttonType, \"ButtonAriaLabel\")]); // ARIA label\n // Add buttons custom classes\n\n button.className = swalClasses[buttonType];\n applyCustomClass(button, params, \"\".concat(buttonType, \"Button\"));\n addClass(button, params[\"\".concat(buttonType, \"ButtonClass\")]);\n }\n\n function handleBackdropParam(container, backdrop) {\n if (typeof backdrop === 'string') {\n container.style.background = backdrop;\n } else if (!backdrop) {\n addClass([document.documentElement, document.body], swalClasses['no-backdrop']);\n }\n }\n\n function handlePositionParam(container, position) {\n if (position in swalClasses) {\n addClass(container, swalClasses[position]);\n } else {\n warn('The \"position\" parameter is not valid, defaulting to \"center\"');\n addClass(container, swalClasses.center);\n }\n }\n\n function handleGrowParam(container, grow) {\n if (grow && typeof grow === 'string') {\n var growClass = \"grow-\".concat(grow);\n\n if (growClass in swalClasses) {\n addClass(container, swalClasses[growClass]);\n }\n }\n }\n\n var renderContainer = function renderContainer(instance, params) {\n var container = getContainer();\n\n if (!container) {\n return;\n }\n\n handleBackdropParam(container, params.backdrop);\n\n if (!params.backdrop && params.allowOutsideClick) {\n warn('\"allowOutsideClick\" parameter requires `backdrop` parameter to be set to `true`');\n }\n\n handlePositionParam(container, params.position);\n handleGrowParam(container, params.grow); // Custom class\n\n applyCustomClass(container, params, 'container'); // Set queue step attribute for getQueueStep() method\n\n var queueStep = document.body.getAttribute('data-swal2-queue-step');\n\n if (queueStep) {\n container.setAttribute('data-queue-step', queueStep);\n document.body.removeAttribute('data-swal2-queue-step');\n }\n };\n /**\n * This module containts `WeakMap`s for each effectively-\"private property\" that a `Swal` has.\n * For example, to set the private property \"foo\" of `this` to \"bar\", you can `privateProps.foo.set(this, 'bar')`\n * This is the approach that Babel will probably take to implement private methods/fields\n * https://github.com/tc39/proposal-private-methods\n * https://github.com/babel/babel/pull/7555\n * Once we have the changes from that PR in Babel, and our core class fits reasonable in *one module*\n * then we can use that language feature.\n */\n\n\n var privateProps = {\n promise: new WeakMap(),\n innerParams: new WeakMap(),\n domCache: new WeakMap()\n };\n var inputTypes = ['input', 'file', 'range', 'select', 'radio', 'checkbox', 'textarea'];\n\n var renderInput = function renderInput(instance, params) {\n var content = getContent();\n var innerParams = privateProps.innerParams.get(instance);\n var rerender = !innerParams || params.input !== innerParams.input;\n inputTypes.forEach(function (inputType) {\n var inputClass = swalClasses[inputType];\n var inputContainer = getChildByClass(content, inputClass); // set attributes\n\n setAttributes(inputType, params.inputAttributes); // set class\n\n inputContainer.className = inputClass;\n\n if (rerender) {\n hide(inputContainer);\n }\n });\n\n if (params.input) {\n if (rerender) {\n showInput(params);\n } // set custom class\n\n\n setCustomClass(params);\n }\n };\n\n var showInput = function showInput(params) {\n if (!renderInputType[params.input]) {\n return error(\"Unexpected type of input! Expected \\\"text\\\", \\\"email\\\", \\\"password\\\", \\\"number\\\", \\\"tel\\\", \\\"select\\\", \\\"radio\\\", \\\"checkbox\\\", \\\"textarea\\\", \\\"file\\\" or \\\"url\\\", got \\\"\".concat(params.input, \"\\\"\"));\n }\n\n var inputContainer = getInputContainer(params.input);\n var input = renderInputType[params.input](inputContainer, params);\n show(input); // input autofocus\n\n setTimeout(function () {\n focusInput(input);\n });\n };\n\n var removeAttributes = function removeAttributes(input) {\n for (var i = 0; i < input.attributes.length; i++) {\n var attrName = input.attributes[i].name;\n\n if (!(['type', 'value', 'style'].indexOf(attrName) !== -1)) {\n input.removeAttribute(attrName);\n }\n }\n };\n\n var setAttributes = function setAttributes(inputType, inputAttributes) {\n var input = getInput(getContent(), inputType);\n\n if (!input) {\n return;\n }\n\n removeAttributes(input);\n\n for (var attr in inputAttributes) {\n // Do not set a placeholder for \n // it'll crash Edge, #1298\n if (inputType === 'range' && attr === 'placeholder') {\n continue;\n }\n\n input.setAttribute(attr, inputAttributes[attr]);\n }\n };\n\n var setCustomClass = function setCustomClass(params) {\n var inputContainer = getInputContainer(params.input);\n\n if (params.customClass) {\n addClass(inputContainer, params.customClass.input);\n }\n };\n\n var setInputPlaceholder = function setInputPlaceholder(input, params) {\n if (!input.placeholder || params.inputPlaceholder) {\n input.placeholder = params.inputPlaceholder;\n }\n };\n\n var setInputLabel = function setInputLabel(input, prependTo, params) {\n if (params.inputLabel) {\n input.id = swalClasses.input;\n var label = document.createElement('label');\n var labelClass = swalClasses['input-label'];\n label.setAttribute('for', input.id);\n label.className = labelClass;\n addClass(label, params.customClass.inputLabel);\n label.innerText = params.inputLabel;\n prependTo.insertAdjacentElement('beforebegin', label);\n }\n };\n\n var getInputContainer = function getInputContainer(inputType) {\n var inputClass = swalClasses[inputType] ? swalClasses[inputType] : swalClasses.input;\n return getChildByClass(getContent(), inputClass);\n };\n\n var renderInputType = {};\n\n renderInputType.text = renderInputType.email = renderInputType.password = renderInputType.number = renderInputType.tel = renderInputType.url = function (input, params) {\n if (typeof params.inputValue === 'string' || typeof params.inputValue === 'number') {\n input.value = params.inputValue;\n } else if (!isPromise(params.inputValue)) {\n warn(\"Unexpected type of inputValue! Expected \\\"string\\\", \\\"number\\\" or \\\"Promise\\\", got \\\"\".concat(_typeof(params.inputValue), \"\\\"\"));\n }\n\n setInputLabel(input, input, params);\n setInputPlaceholder(input, params);\n input.type = params.input;\n return input;\n };\n\n renderInputType.file = function (input, params) {\n setInputLabel(input, input, params);\n setInputPlaceholder(input, params);\n return input;\n };\n\n renderInputType.range = function (range, params) {\n var rangeInput = range.querySelector('input');\n var rangeOutput = range.querySelector('output');\n rangeInput.value = params.inputValue;\n rangeInput.type = params.input;\n rangeOutput.value = params.inputValue;\n setInputLabel(rangeInput, range, params);\n return range;\n };\n\n renderInputType.select = function (select, params) {\n select.textContent = '';\n\n if (params.inputPlaceholder) {\n var placeholder = document.createElement('option');\n setInnerHtml(placeholder, params.inputPlaceholder);\n placeholder.value = '';\n placeholder.disabled = true;\n placeholder.selected = true;\n select.appendChild(placeholder);\n }\n\n setInputLabel(select, select, params);\n return select;\n };\n\n renderInputType.radio = function (radio) {\n radio.textContent = '';\n return radio;\n };\n\n renderInputType.checkbox = function (checkboxContainer, params) {\n var checkbox = getInput(getContent(), 'checkbox');\n checkbox.value = 1;\n checkbox.id = swalClasses.checkbox;\n checkbox.checked = Boolean(params.inputValue);\n var label = checkboxContainer.querySelector('span');\n setInnerHtml(label, params.inputPlaceholder);\n return checkboxContainer;\n };\n\n renderInputType.textarea = function (textarea, params) {\n textarea.value = params.inputValue;\n setInputPlaceholder(textarea, params);\n setInputLabel(textarea, textarea, params);\n\n var getPadding = function getPadding(el) {\n return parseInt(window.getComputedStyle(el).paddingLeft) + parseInt(window.getComputedStyle(el).paddingRight);\n };\n\n if ('MutationObserver' in window) {\n // #1699\n var initialPopupWidth = parseInt(window.getComputedStyle(getPopup()).width);\n\n var outputsize = function outputsize() {\n var contentWidth = textarea.offsetWidth + getPadding(getPopup()) + getPadding(getContent());\n\n if (contentWidth > initialPopupWidth) {\n getPopup().style.width = \"\".concat(contentWidth, \"px\");\n } else {\n getPopup().style.width = null;\n }\n };\n\n new MutationObserver(outputsize).observe(textarea, {\n attributes: true,\n attributeFilter: ['style']\n });\n }\n\n return textarea;\n };\n\n var renderContent = function renderContent(instance, params) {\n var htmlContainer = getHtmlContainer();\n applyCustomClass(htmlContainer, params, 'htmlContainer'); // Content as HTML\n\n if (params.html) {\n parseHtmlToContainer(params.html, htmlContainer);\n show(htmlContainer, 'block'); // Content as plain text\n } else if (params.text) {\n htmlContainer.textContent = params.text;\n show(htmlContainer, 'block'); // No content\n } else {\n hide(htmlContainer);\n }\n\n renderInput(instance, params); // Custom class\n\n applyCustomClass(getContent(), params, 'content');\n };\n\n var renderFooter = function renderFooter(instance, params) {\n var footer = getFooter();\n toggle(footer, params.footer);\n\n if (params.footer) {\n parseHtmlToContainer(params.footer, footer);\n } // Custom class\n\n\n applyCustomClass(footer, params, 'footer');\n };\n\n var renderCloseButton = function renderCloseButton(instance, params) {\n var closeButton = getCloseButton();\n setInnerHtml(closeButton, params.closeButtonHtml); // Custom class\n\n applyCustomClass(closeButton, params, 'closeButton');\n toggle(closeButton, params.showCloseButton);\n closeButton.setAttribute('aria-label', params.closeButtonAriaLabel);\n };\n\n var renderIcon = function renderIcon(instance, params) {\n var innerParams = privateProps.innerParams.get(instance);\n var icon = getIcon(); // if the given icon already rendered, apply the styling without re-rendering the icon\n\n if (innerParams && params.icon === innerParams.icon) {\n // Custom or default content\n setContent(icon, params);\n applyStyles(icon, params);\n return;\n }\n\n if (!params.icon && !params.iconHtml) {\n return hide(icon);\n }\n\n if (params.icon && Object.keys(iconTypes).indexOf(params.icon) === -1) {\n error(\"Unknown icon! Expected \\\"success\\\", \\\"error\\\", \\\"warning\\\", \\\"info\\\" or \\\"question\\\", got \\\"\".concat(params.icon, \"\\\"\"));\n return hide(icon);\n }\n\n show(icon); // Custom or default content\n\n setContent(icon, params);\n applyStyles(icon, params); // Animate icon\n\n addClass(icon, params.showClass.icon);\n };\n\n var applyStyles = function applyStyles(icon, params) {\n for (var iconType in iconTypes) {\n if (params.icon !== iconType) {\n removeClass(icon, iconTypes[iconType]);\n }\n }\n\n addClass(icon, iconTypes[params.icon]); // Icon color\n\n setColor(icon, params); // Success icon background color\n\n adjustSuccessIconBackgoundColor(); // Custom class\n\n applyCustomClass(icon, params, 'icon');\n }; // Adjust success icon background color to match the popup background color\n\n\n var adjustSuccessIconBackgoundColor = function adjustSuccessIconBackgoundColor() {\n var popup = getPopup();\n var popupBackgroundColor = window.getComputedStyle(popup).getPropertyValue('background-color');\n var successIconParts = popup.querySelectorAll('[class^=swal2-success-circular-line], .swal2-success-fix');\n\n for (var i = 0; i < successIconParts.length; i++) {\n successIconParts[i].style.backgroundColor = popupBackgroundColor;\n }\n };\n\n var setContent = function setContent(icon, params) {\n icon.textContent = '';\n\n if (params.iconHtml) {\n setInnerHtml(icon, iconContent(params.iconHtml));\n } else if (params.icon === 'success') {\n setInnerHtml(icon, \"\\n \\n \\n \\n \\n \");\n } else if (params.icon === 'error') {\n setInnerHtml(icon, \"\\n \\n \\n \\n \\n \");\n } else {\n var defaultIconHtml = {\n question: '?',\n warning: '!',\n info: 'i'\n };\n setInnerHtml(icon, iconContent(defaultIconHtml[params.icon]));\n }\n };\n\n var setColor = function setColor(icon, params) {\n if (!params.iconColor) {\n return;\n }\n\n icon.style.color = params.iconColor;\n icon.style.borderColor = params.iconColor;\n\n for (var _i = 0, _arr = ['.swal2-success-line-tip', '.swal2-success-line-long', '.swal2-x-mark-line-left', '.swal2-x-mark-line-right']; _i < _arr.length; _i++) {\n var sel = _arr[_i];\n setStyle(icon, sel, 'backgroundColor', params.iconColor);\n }\n\n setStyle(icon, '.swal2-success-ring', 'borderColor', params.iconColor);\n };\n\n var iconContent = function iconContent(content) {\n return \"\").concat(content, \"
\");\n };\n\n var renderImage = function renderImage(instance, params) {\n var image = getImage();\n\n if (!params.imageUrl) {\n return hide(image);\n }\n\n show(image, ''); // Src, alt\n\n image.setAttribute('src', params.imageUrl);\n image.setAttribute('alt', params.imageAlt); // Width, height\n\n applyNumericalStyle(image, 'width', params.imageWidth);\n applyNumericalStyle(image, 'height', params.imageHeight); // Class\n\n image.className = swalClasses.image;\n applyCustomClass(image, params, 'image');\n };\n\n var currentSteps = [];\n /*\n * Global function for chaining sweetAlert popups\n */\n\n var queue = function queue(steps) {\n warnAboutDeprecation('Swal.queue()', \"async/await\");\n var Swal = this;\n currentSteps = steps;\n\n var resetAndResolve = function resetAndResolve(resolve, value) {\n currentSteps = [];\n resolve(value);\n };\n\n var queueResult = [];\n return new Promise(function (resolve) {\n (function step(i, callback) {\n if (i < currentSteps.length) {\n document.body.setAttribute('data-swal2-queue-step', i);\n Swal.fire(currentSteps[i]).then(function (result) {\n if (typeof result.value !== 'undefined') {\n queueResult.push(result.value);\n step(i + 1, callback);\n } else {\n resetAndResolve(resolve, {\n dismiss: result.dismiss\n });\n }\n });\n } else {\n resetAndResolve(resolve, {\n value: queueResult\n });\n }\n })(0);\n });\n };\n /*\n * Global function for getting the index of current popup in queue\n */\n\n\n var getQueueStep = function getQueueStep() {\n return getContainer() && getContainer().getAttribute('data-queue-step');\n };\n /*\n * Global function for inserting a popup to the queue\n */\n\n\n var insertQueueStep = function insertQueueStep(step, index) {\n if (index && index < currentSteps.length) {\n return currentSteps.splice(index, 0, step);\n }\n\n return currentSteps.push(step);\n };\n /*\n * Global function for deleting a popup from the queue\n */\n\n\n var deleteQueueStep = function deleteQueueStep(index) {\n if (typeof currentSteps[index] !== 'undefined') {\n currentSteps.splice(index, 1);\n }\n };\n\n var createStepElement = function createStepElement(step) {\n var stepEl = document.createElement('li');\n addClass(stepEl, swalClasses['progress-step']);\n setInnerHtml(stepEl, step);\n return stepEl;\n };\n\n var createLineElement = function createLineElement(params) {\n var lineEl = document.createElement('li');\n addClass(lineEl, swalClasses['progress-step-line']);\n\n if (params.progressStepsDistance) {\n lineEl.style.width = params.progressStepsDistance;\n }\n\n return lineEl;\n };\n\n var renderProgressSteps = function renderProgressSteps(instance, params) {\n var progressStepsContainer = getProgressSteps();\n\n if (!params.progressSteps || params.progressSteps.length === 0) {\n return hide(progressStepsContainer);\n }\n\n show(progressStepsContainer);\n progressStepsContainer.textContent = '';\n var currentProgressStep = parseInt(params.currentProgressStep === undefined ? getQueueStep() : params.currentProgressStep);\n\n if (currentProgressStep >= params.progressSteps.length) {\n warn('Invalid currentProgressStep parameter, it should be less than progressSteps.length ' + '(currentProgressStep like JS arrays starts from 0)');\n }\n\n params.progressSteps.forEach(function (step, index) {\n var stepEl = createStepElement(step);\n progressStepsContainer.appendChild(stepEl);\n\n if (index === currentProgressStep) {\n addClass(stepEl, swalClasses['active-progress-step']);\n }\n\n if (index !== params.progressSteps.length - 1) {\n var lineEl = createLineElement(params);\n progressStepsContainer.appendChild(lineEl);\n }\n });\n };\n\n var renderTitle = function renderTitle(instance, params) {\n var title = getTitle();\n toggle(title, params.title || params.titleText, 'block');\n\n if (params.title) {\n parseHtmlToContainer(params.title, title);\n }\n\n if (params.titleText) {\n title.innerText = params.titleText;\n } // Custom class\n\n\n applyCustomClass(title, params, 'title');\n };\n\n var renderHeader = function renderHeader(instance, params) {\n var header = getHeader(); // Custom class\n\n applyCustomClass(header, params, 'header'); // Progress steps\n\n renderProgressSteps(instance, params); // Icon\n\n renderIcon(instance, params); // Image\n\n renderImage(instance, params); // Title\n\n renderTitle(instance, params); // Close button\n\n renderCloseButton(instance, params);\n };\n\n var renderPopup = function renderPopup(instance, params) {\n var container = getContainer();\n var popup = getPopup(); // Width\n\n if (params.toast) {\n // #2170\n applyNumericalStyle(container, 'width', params.width);\n popup.style.width = '100%';\n } else {\n applyNumericalStyle(popup, 'width', params.width);\n } // Padding\n\n\n applyNumericalStyle(popup, 'padding', params.padding); // Background\n\n if (params.background) {\n popup.style.background = params.background;\n }\n\n hide(getValidationMessage()); // Classes\n\n addClasses(popup, params);\n };\n\n var addClasses = function addClasses(popup, params) {\n // Default Class + showClass when updating Swal.update({})\n popup.className = \"\".concat(swalClasses.popup, \" \").concat(isVisible(popup) ? params.showClass.popup : '');\n\n if (params.toast) {\n addClass([document.documentElement, document.body], swalClasses['toast-shown']);\n addClass(popup, swalClasses.toast);\n } else {\n addClass(popup, swalClasses.modal);\n } // Custom class\n\n\n applyCustomClass(popup, params, 'popup');\n\n if (typeof params.customClass === 'string') {\n addClass(popup, params.customClass);\n } // Icon class (#1842)\n\n\n if (params.icon) {\n addClass(popup, swalClasses[\"icon-\".concat(params.icon)]);\n }\n };\n\n var render = function render(instance, params) {\n renderPopup(instance, params);\n renderContainer(instance, params);\n renderHeader(instance, params);\n renderContent(instance, params);\n renderActions(instance, params);\n renderFooter(instance, params);\n\n if (typeof params.didRender === 'function') {\n params.didRender(getPopup());\n } else if (typeof params.onRender === 'function') {\n params.onRender(getPopup()); // @deprecated\n }\n };\n /*\n * Global function to determine if SweetAlert2 popup is shown\n */\n\n\n var isVisible$1 = function isVisible$$1() {\n return isVisible(getPopup());\n };\n /*\n * Global function to click 'Confirm' button\n */\n\n\n var clickConfirm = function clickConfirm() {\n return getConfirmButton() && getConfirmButton().click();\n };\n /*\n * Global function to click 'Deny' button\n */\n\n\n var clickDeny = function clickDeny() {\n return getDenyButton() && getDenyButton().click();\n };\n /*\n * Global function to click 'Cancel' button\n */\n\n\n var clickCancel = function clickCancel() {\n return getCancelButton() && getCancelButton().click();\n };\n\n function fire() {\n var Swal = this;\n\n for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n args[_key] = arguments[_key];\n }\n\n return _construct(Swal, args);\n }\n /**\n * Returns an extended version of `Swal` containing `params` as defaults.\n * Useful for reusing Swal configuration.\n *\n * For example:\n *\n * Before:\n * const textPromptOptions = { input: 'text', showCancelButton: true }\n * const {value: firstName} = await Swal.fire({ ...textPromptOptions, title: 'What is your first name?' })\n * const {value: lastName} = await Swal.fire({ ...textPromptOptions, title: 'What is your last name?' })\n *\n * After:\n * const TextPrompt = Swal.mixin({ input: 'text', showCancelButton: true })\n * const {value: firstName} = await TextPrompt('What is your first name?')\n * const {value: lastName} = await TextPrompt('What is your last name?')\n *\n * @param mixinParams\n */\n\n\n function mixin(mixinParams) {\n var MixinSwal = /*#__PURE__*/function (_this) {\n _inherits(MixinSwal, _this);\n\n var _super = _createSuper(MixinSwal);\n\n function MixinSwal() {\n _classCallCheck(this, MixinSwal);\n\n return _super.apply(this, arguments);\n }\n\n _createClass(MixinSwal, [{\n key: \"_main\",\n value: function _main(params, priorityMixinParams) {\n return _get(_getPrototypeOf(MixinSwal.prototype), \"_main\", this).call(this, params, _extends({}, mixinParams, priorityMixinParams));\n }\n }]);\n\n return MixinSwal;\n }(this);\n\n return MixinSwal;\n }\n /**\n * Shows loader (spinner), this is useful with AJAX requests.\n * By default the loader be shown instead of the \"Confirm\" button.\n */\n\n\n var showLoading = function showLoading(buttonToReplace) {\n var popup = getPopup();\n\n if (!popup) {\n Swal.fire();\n }\n\n popup = getPopup();\n var actions = getActions();\n var loader = getLoader();\n\n if (!buttonToReplace && isVisible(getConfirmButton())) {\n buttonToReplace = getConfirmButton();\n }\n\n show(actions);\n\n if (buttonToReplace) {\n hide(buttonToReplace);\n loader.setAttribute('data-button-to-replace', buttonToReplace.className);\n }\n\n loader.parentNode.insertBefore(loader, buttonToReplace);\n addClass([popup, actions], swalClasses.loading);\n show(loader);\n popup.setAttribute('data-loading', true);\n popup.setAttribute('aria-busy', true);\n popup.focus();\n };\n\n var RESTORE_FOCUS_TIMEOUT = 100;\n var globalState = {};\n\n var focusPreviousActiveElement = function focusPreviousActiveElement() {\n if (globalState.previousActiveElement && globalState.previousActiveElement.focus) {\n globalState.previousActiveElement.focus();\n globalState.previousActiveElement = null;\n } else if (document.body) {\n document.body.focus();\n }\n }; // Restore previous active (focused) element\n\n\n var restoreActiveElement = function restoreActiveElement(returnFocus) {\n return new Promise(function (resolve) {\n if (!returnFocus) {\n return resolve();\n }\n\n var x = window.scrollX;\n var y = window.scrollY;\n globalState.restoreFocusTimeout = setTimeout(function () {\n focusPreviousActiveElement();\n resolve();\n }, RESTORE_FOCUS_TIMEOUT); // issues/900\n\n if (typeof x !== 'undefined' && typeof y !== 'undefined') {\n // IE doesn't have scrollX/scrollY support\n window.scrollTo(x, y);\n }\n });\n };\n /**\n * If `timer` parameter is set, returns number of milliseconds of timer remained.\n * Otherwise, returns undefined.\n */\n\n\n var getTimerLeft = function getTimerLeft() {\n return globalState.timeout && globalState.timeout.getTimerLeft();\n };\n /**\n * Stop timer. Returns number of milliseconds of timer remained.\n * If `timer` parameter isn't set, returns undefined.\n */\n\n\n var stopTimer = function stopTimer() {\n if (globalState.timeout) {\n stopTimerProgressBar();\n return globalState.timeout.stop();\n }\n };\n /**\n * Resume timer. Returns number of milliseconds of timer remained.\n * If `timer` parameter isn't set, returns undefined.\n */\n\n\n var resumeTimer = function resumeTimer() {\n if (globalState.timeout) {\n var remaining = globalState.timeout.start();\n animateTimerProgressBar(remaining);\n return remaining;\n }\n };\n /**\n * Resume timer. Returns number of milliseconds of timer remained.\n * If `timer` parameter isn't set, returns undefined.\n */\n\n\n var toggleTimer = function toggleTimer() {\n var timer = globalState.timeout;\n return timer && (timer.running ? stopTimer() : resumeTimer());\n };\n /**\n * Increase timer. Returns number of milliseconds of an updated timer.\n * If `timer` parameter isn't set, returns undefined.\n */\n\n\n var increaseTimer = function increaseTimer(n) {\n if (globalState.timeout) {\n var remaining = globalState.timeout.increase(n);\n animateTimerProgressBar(remaining, true);\n return remaining;\n }\n };\n /**\n * Check if timer is running. Returns true if timer is running\n * or false if timer is paused or stopped.\n * If `timer` parameter isn't set, returns undefined\n */\n\n\n var isTimerRunning = function isTimerRunning() {\n return globalState.timeout && globalState.timeout.isRunning();\n };\n\n var bodyClickListenerAdded = false;\n var clickHandlers = {};\n\n function bindClickHandler() {\n var attr = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'data-swal-template';\n clickHandlers[attr] = this;\n\n if (!bodyClickListenerAdded) {\n document.body.addEventListener('click', bodyClickListener);\n bodyClickListenerAdded = true;\n }\n }\n\n var bodyClickListener = function bodyClickListener(event) {\n // 1. using .parentNode instead of event.path because of better support by old browsers https://stackoverflow.com/a/39245638\n // 2. using .parentNode instead of .parentElement because of IE11 + SVG https://stackoverflow.com/a/36270354\n for (var el = event.target; el && el !== document; el = el.parentNode) {\n for (var attr in clickHandlers) {\n var template = el.getAttribute(attr);\n\n if (template) {\n clickHandlers[attr].fire({\n template: template\n });\n return;\n }\n }\n }\n };\n\n var defaultParams = {\n title: '',\n titleText: '',\n text: '',\n html: '',\n footer: '',\n icon: undefined,\n iconColor: undefined,\n iconHtml: undefined,\n template: undefined,\n toast: false,\n animation: true,\n showClass: {\n popup: 'swal2-show',\n backdrop: 'swal2-backdrop-show',\n icon: 'swal2-icon-show'\n },\n hideClass: {\n popup: 'swal2-hide',\n backdrop: 'swal2-backdrop-hide',\n icon: 'swal2-icon-hide'\n },\n customClass: {},\n target: 'body',\n backdrop: true,\n heightAuto: true,\n allowOutsideClick: true,\n allowEscapeKey: true,\n allowEnterKey: true,\n stopKeydownPropagation: true,\n keydownListenerCapture: false,\n showConfirmButton: true,\n showDenyButton: false,\n showCancelButton: false,\n preConfirm: undefined,\n preDeny: undefined,\n confirmButtonText: 'OK',\n confirmButtonAriaLabel: '',\n confirmButtonColor: undefined,\n denyButtonText: 'No',\n denyButtonAriaLabel: '',\n denyButtonColor: undefined,\n cancelButtonText: 'Cancel',\n cancelButtonAriaLabel: '',\n cancelButtonColor: undefined,\n buttonsStyling: true,\n reverseButtons: false,\n focusConfirm: true,\n focusDeny: false,\n focusCancel: false,\n returnFocus: true,\n showCloseButton: false,\n closeButtonHtml: '×',\n closeButtonAriaLabel: 'Close this dialog',\n loaderHtml: '',\n showLoaderOnConfirm: false,\n showLoaderOnDeny: false,\n imageUrl: undefined,\n imageWidth: undefined,\n imageHeight: undefined,\n imageAlt: '',\n timer: undefined,\n timerProgressBar: false,\n width: undefined,\n padding: undefined,\n background: undefined,\n input: undefined,\n inputPlaceholder: '',\n inputLabel: '',\n inputValue: '',\n inputOptions: {},\n inputAutoTrim: true,\n inputAttributes: {},\n inputValidator: undefined,\n returnInputValueOnDeny: false,\n validationMessage: undefined,\n grow: false,\n position: 'center',\n progressSteps: [],\n currentProgressStep: undefined,\n progressStepsDistance: undefined,\n onBeforeOpen: undefined,\n onOpen: undefined,\n willOpen: undefined,\n didOpen: undefined,\n onRender: undefined,\n didRender: undefined,\n onClose: undefined,\n onAfterClose: undefined,\n willClose: undefined,\n didClose: undefined,\n onDestroy: undefined,\n didDestroy: undefined,\n scrollbarPadding: true\n };\n var updatableParams = ['allowEscapeKey', 'allowOutsideClick', 'background', 'buttonsStyling', 'cancelButtonAriaLabel', 'cancelButtonColor', 'cancelButtonText', 'closeButtonAriaLabel', 'closeButtonHtml', 'confirmButtonAriaLabel', 'confirmButtonColor', 'confirmButtonText', 'currentProgressStep', 'customClass', 'denyButtonAriaLabel', 'denyButtonColor', 'denyButtonText', 'didClose', 'didDestroy', 'footer', 'hideClass', 'html', 'icon', 'iconColor', 'iconHtml', 'imageAlt', 'imageHeight', 'imageUrl', 'imageWidth', 'onAfterClose', 'onClose', 'onDestroy', 'progressSteps', 'returnFocus', 'reverseButtons', 'showCancelButton', 'showCloseButton', 'showConfirmButton', 'showDenyButton', 'text', 'title', 'titleText', 'willClose'];\n var deprecatedParams = {\n animation: 'showClass\" and \"hideClass',\n onBeforeOpen: 'willOpen',\n onOpen: 'didOpen',\n onRender: 'didRender',\n onClose: 'willClose',\n onAfterClose: 'didClose',\n onDestroy: 'didDestroy'\n };\n var toastIncompatibleParams = ['allowOutsideClick', 'allowEnterKey', 'backdrop', 'focusConfirm', 'focusDeny', 'focusCancel', 'returnFocus', 'heightAuto', 'keydownListenerCapture'];\n /**\n * Is valid parameter\n * @param {String} paramName\n */\n\n var isValidParameter = function isValidParameter(paramName) {\n return Object.prototype.hasOwnProperty.call(defaultParams, paramName);\n };\n /**\n * Is valid parameter for Swal.update() method\n * @param {String} paramName\n */\n\n\n var isUpdatableParameter = function isUpdatableParameter(paramName) {\n return updatableParams.indexOf(paramName) !== -1;\n };\n /**\n * Is deprecated parameter\n * @param {String} paramName\n */\n\n\n var isDeprecatedParameter = function isDeprecatedParameter(paramName) {\n return deprecatedParams[paramName];\n };\n\n var checkIfParamIsValid = function checkIfParamIsValid(param) {\n if (!isValidParameter(param)) {\n warn(\"Unknown parameter \\\"\".concat(param, \"\\\"\"));\n }\n };\n\n var checkIfToastParamIsValid = function checkIfToastParamIsValid(param) {\n if (toastIncompatibleParams.indexOf(param) !== -1) {\n warn(\"The parameter \\\"\".concat(param, \"\\\" is incompatible with toasts\"));\n }\n };\n\n var checkIfParamIsDeprecated = function checkIfParamIsDeprecated(param) {\n if (isDeprecatedParameter(param)) {\n warnAboutDeprecation(param, isDeprecatedParameter(param));\n }\n };\n /**\n * Show relevant warnings for given params\n *\n * @param params\n */\n\n\n var showWarningsForParams = function showWarningsForParams(params) {\n for (var param in params) {\n checkIfParamIsValid(param);\n\n if (params.toast) {\n checkIfToastParamIsValid(param);\n }\n\n checkIfParamIsDeprecated(param);\n }\n };\n\n var staticMethods = /*#__PURE__*/Object.freeze({\n isValidParameter: isValidParameter,\n isUpdatableParameter: isUpdatableParameter,\n isDeprecatedParameter: isDeprecatedParameter,\n argsToParams: argsToParams,\n isVisible: isVisible$1,\n clickConfirm: clickConfirm,\n clickDeny: clickDeny,\n clickCancel: clickCancel,\n getContainer: getContainer,\n getPopup: getPopup,\n getTitle: getTitle,\n getContent: getContent,\n getHtmlContainer: getHtmlContainer,\n getImage: getImage,\n getIcon: getIcon,\n getInputLabel: getInputLabel,\n getCloseButton: getCloseButton,\n getActions: getActions,\n getConfirmButton: getConfirmButton,\n getDenyButton: getDenyButton,\n getCancelButton: getCancelButton,\n getLoader: getLoader,\n getHeader: getHeader,\n getFooter: getFooter,\n getTimerProgressBar: getTimerProgressBar,\n getFocusableElements: getFocusableElements,\n getValidationMessage: getValidationMessage,\n isLoading: isLoading,\n fire: fire,\n mixin: mixin,\n queue: queue,\n getQueueStep: getQueueStep,\n insertQueueStep: insertQueueStep,\n deleteQueueStep: deleteQueueStep,\n showLoading: showLoading,\n enableLoading: showLoading,\n getTimerLeft: getTimerLeft,\n stopTimer: stopTimer,\n resumeTimer: resumeTimer,\n toggleTimer: toggleTimer,\n increaseTimer: increaseTimer,\n isTimerRunning: isTimerRunning,\n bindClickHandler: bindClickHandler\n });\n /**\n * Hides loader and shows back the button which was hidden by .showLoading()\n */\n\n function hideLoading() {\n // do nothing if popup is closed\n var innerParams = privateProps.innerParams.get(this);\n\n if (!innerParams) {\n return;\n }\n\n var domCache = privateProps.domCache.get(this);\n hide(domCache.loader);\n var buttonToReplace = domCache.popup.getElementsByClassName(domCache.loader.getAttribute('data-button-to-replace'));\n\n if (buttonToReplace.length) {\n show(buttonToReplace[0], 'inline-block');\n } else if (allButtonsAreHidden()) {\n hide(domCache.actions);\n }\n\n removeClass([domCache.popup, domCache.actions], swalClasses.loading);\n domCache.popup.removeAttribute('aria-busy');\n domCache.popup.removeAttribute('data-loading');\n domCache.confirmButton.disabled = false;\n domCache.denyButton.disabled = false;\n domCache.cancelButton.disabled = false;\n }\n\n function getInput$1(instance) {\n var innerParams = privateProps.innerParams.get(instance || this);\n var domCache = privateProps.domCache.get(instance || this);\n\n if (!domCache) {\n return null;\n }\n\n return getInput(domCache.content, innerParams.input);\n }\n\n var fixScrollbar = function fixScrollbar() {\n // for queues, do not do this more than once\n if (states.previousBodyPadding !== null) {\n return;\n } // if the body has overflow\n\n\n if (document.body.scrollHeight > window.innerHeight) {\n // add padding so the content doesn't shift after removal of scrollbar\n states.previousBodyPadding = parseInt(window.getComputedStyle(document.body).getPropertyValue('padding-right'));\n document.body.style.paddingRight = \"\".concat(states.previousBodyPadding + measureScrollbar(), \"px\");\n }\n };\n\n var undoScrollbar = function undoScrollbar() {\n if (states.previousBodyPadding !== null) {\n document.body.style.paddingRight = \"\".concat(states.previousBodyPadding, \"px\");\n states.previousBodyPadding = null;\n }\n };\n /* istanbul ignore file */\n\n\n var iOSfix = function iOSfix() {\n var iOS = /iPad|iPhone|iPod/.test(navigator.userAgent) && !window.MSStream || navigator.platform === 'MacIntel' && navigator.maxTouchPoints > 1;\n\n if (iOS && !hasClass(document.body, swalClasses.iosfix)) {\n var offset = document.body.scrollTop;\n document.body.style.top = \"\".concat(offset * -1, \"px\");\n addClass(document.body, swalClasses.iosfix);\n lockBodyScroll();\n addBottomPaddingForTallPopups(); // #1948\n }\n };\n\n var addBottomPaddingForTallPopups = function addBottomPaddingForTallPopups() {\n var safari = !navigator.userAgent.match(/(CriOS|FxiOS|EdgiOS|YaBrowser|UCBrowser)/i);\n\n if (safari) {\n var bottomPanelHeight = 44;\n\n if (getPopup().scrollHeight > window.innerHeight - bottomPanelHeight) {\n getContainer().style.paddingBottom = \"\".concat(bottomPanelHeight, \"px\");\n }\n }\n };\n\n var lockBodyScroll = function lockBodyScroll() {\n // #1246\n var container = getContainer();\n var preventTouchMove;\n\n container.ontouchstart = function (e) {\n preventTouchMove = shouldPreventTouchMove(e);\n };\n\n container.ontouchmove = function (e) {\n if (preventTouchMove) {\n e.preventDefault();\n e.stopPropagation();\n }\n };\n };\n\n var shouldPreventTouchMove = function shouldPreventTouchMove(event) {\n var target = event.target;\n var container = getContainer();\n\n if (isStylys(event) || isZoom(event)) {\n return false;\n }\n\n if (target === container) {\n return true;\n }\n\n if (!isScrollable(container) && target.tagName !== 'INPUT' && // #1603\n !(isScrollable(getContent()) && // #1944\n getContent().contains(target))) {\n return true;\n }\n\n return false;\n };\n\n var isStylys = function isStylys(event) {\n // #1786\n return event.touches && event.touches.length && event.touches[0].touchType === 'stylus';\n };\n\n var isZoom = function isZoom(event) {\n // #1891\n return event.touches && event.touches.length > 1;\n };\n\n var undoIOSfix = function undoIOSfix() {\n if (hasClass(document.body, swalClasses.iosfix)) {\n var offset = parseInt(document.body.style.top, 10);\n removeClass(document.body, swalClasses.iosfix);\n document.body.style.top = '';\n document.body.scrollTop = offset * -1;\n }\n };\n /* istanbul ignore file */\n\n\n var isIE11 = function isIE11() {\n return !!window.MSInputMethodContext && !!document.documentMode;\n }; // Fix IE11 centering sweetalert2/issues/933\n\n\n var fixVerticalPositionIE = function fixVerticalPositionIE() {\n var container = getContainer();\n var popup = getPopup();\n container.style.removeProperty('align-items');\n\n if (popup.offsetTop < 0) {\n container.style.alignItems = 'flex-start';\n }\n };\n\n var IEfix = function IEfix() {\n if (typeof window !== 'undefined' && isIE11()) {\n fixVerticalPositionIE();\n window.addEventListener('resize', fixVerticalPositionIE);\n }\n };\n\n var undoIEfix = function undoIEfix() {\n if (typeof window !== 'undefined' && isIE11()) {\n window.removeEventListener('resize', fixVerticalPositionIE);\n }\n }; // Adding aria-hidden=\"true\" to elements outside of the active modal dialog ensures that\n // elements not within the active modal dialog will not be surfaced if a user opens a screen\n // reader’s list of elements (headings, form controls, landmarks, etc.) in the document.\n\n\n var setAriaHidden = function setAriaHidden() {\n var bodyChildren = toArray(document.body.children);\n bodyChildren.forEach(function (el) {\n if (el === getContainer() || contains(el, getContainer())) {\n return;\n }\n\n if (el.hasAttribute('aria-hidden')) {\n el.setAttribute('data-previous-aria-hidden', el.getAttribute('aria-hidden'));\n }\n\n el.setAttribute('aria-hidden', 'true');\n });\n };\n\n var unsetAriaHidden = function unsetAriaHidden() {\n var bodyChildren = toArray(document.body.children);\n bodyChildren.forEach(function (el) {\n if (el.hasAttribute('data-previous-aria-hidden')) {\n el.setAttribute('aria-hidden', el.getAttribute('data-previous-aria-hidden'));\n el.removeAttribute('data-previous-aria-hidden');\n } else {\n el.removeAttribute('aria-hidden');\n }\n });\n };\n /**\n * This module containts `WeakMap`s for each effectively-\"private property\" that a `Swal` has.\n * For example, to set the private property \"foo\" of `this` to \"bar\", you can `privateProps.foo.set(this, 'bar')`\n * This is the approach that Babel will probably take to implement private methods/fields\n * https://github.com/tc39/proposal-private-methods\n * https://github.com/babel/babel/pull/7555\n * Once we have the changes from that PR in Babel, and our core class fits reasonable in *one module*\n * then we can use that language feature.\n */\n\n\n var privateMethods = {\n swalPromiseResolve: new WeakMap()\n };\n /*\n * Instance method to close sweetAlert\n */\n\n function removePopupAndResetState(instance, container, returnFocus, didClose) {\n if (isToast()) {\n triggerDidCloseAndDispose(instance, didClose);\n } else {\n restoreActiveElement(returnFocus).then(function () {\n return triggerDidCloseAndDispose(instance, didClose);\n });\n globalState.keydownTarget.removeEventListener('keydown', globalState.keydownHandler, {\n capture: globalState.keydownListenerCapture\n });\n globalState.keydownHandlerAdded = false;\n }\n\n if (container.parentNode && !document.body.getAttribute('data-swal2-queue-step')) {\n container.parentNode.removeChild(container);\n }\n\n if (isModal()) {\n undoScrollbar();\n undoIOSfix();\n undoIEfix();\n unsetAriaHidden();\n }\n\n removeBodyClasses();\n }\n\n function removeBodyClasses() {\n removeClass([document.documentElement, document.body], [swalClasses.shown, swalClasses['height-auto'], swalClasses['no-backdrop'], swalClasses['toast-shown']]);\n }\n\n function close(resolveValue) {\n var popup = getPopup();\n\n if (!popup) {\n return;\n }\n\n resolveValue = prepareResolveValue(resolveValue);\n var innerParams = privateProps.innerParams.get(this);\n\n if (!innerParams || hasClass(popup, innerParams.hideClass.popup)) {\n return;\n }\n\n var swalPromiseResolve = privateMethods.swalPromiseResolve.get(this);\n removeClass(popup, innerParams.showClass.popup);\n addClass(popup, innerParams.hideClass.popup);\n var backdrop = getContainer();\n removeClass(backdrop, innerParams.showClass.backdrop);\n addClass(backdrop, innerParams.hideClass.backdrop);\n handlePopupAnimation(this, popup, innerParams); // Resolve Swal promise\n\n swalPromiseResolve(resolveValue);\n }\n\n var prepareResolveValue = function prepareResolveValue(resolveValue) {\n // When user calls Swal.close()\n if (typeof resolveValue === 'undefined') {\n return {\n isConfirmed: false,\n isDenied: false,\n isDismissed: true\n };\n }\n\n return _extends({\n isConfirmed: false,\n isDenied: false,\n isDismissed: false\n }, resolveValue);\n };\n\n var handlePopupAnimation = function handlePopupAnimation(instance, popup, innerParams) {\n var container = getContainer(); // If animation is supported, animate\n\n var animationIsSupported = animationEndEvent && hasCssAnimation(popup);\n var onClose = innerParams.onClose,\n onAfterClose = innerParams.onAfterClose,\n willClose = innerParams.willClose,\n didClose = innerParams.didClose;\n runDidClose(popup, willClose, onClose);\n\n if (animationIsSupported) {\n animatePopup(instance, popup, container, innerParams.returnFocus, didClose || onAfterClose);\n } else {\n // Otherwise, remove immediately\n removePopupAndResetState(instance, container, innerParams.returnFocus, didClose || onAfterClose);\n }\n };\n\n var runDidClose = function runDidClose(popup, willClose, onClose) {\n if (willClose !== null && typeof willClose === 'function') {\n willClose(popup);\n } else if (onClose !== null && typeof onClose === 'function') {\n onClose(popup); // @deprecated\n }\n };\n\n var animatePopup = function animatePopup(instance, popup, container, returnFocus, didClose) {\n globalState.swalCloseEventFinishedCallback = removePopupAndResetState.bind(null, instance, container, returnFocus, didClose);\n popup.addEventListener(animationEndEvent, function (e) {\n if (e.target === popup) {\n globalState.swalCloseEventFinishedCallback();\n delete globalState.swalCloseEventFinishedCallback;\n }\n });\n };\n\n var triggerDidCloseAndDispose = function triggerDidCloseAndDispose(instance, didClose) {\n setTimeout(function () {\n if (typeof didClose === 'function') {\n didClose();\n }\n\n instance._destroy();\n });\n };\n\n function setButtonsDisabled(instance, buttons, disabled) {\n var domCache = privateProps.domCache.get(instance);\n buttons.forEach(function (button) {\n domCache[button].disabled = disabled;\n });\n }\n\n function setInputDisabled(input, disabled) {\n if (!input) {\n return false;\n }\n\n if (input.type === 'radio') {\n var radiosContainer = input.parentNode.parentNode;\n var radios = radiosContainer.querySelectorAll('input');\n\n for (var i = 0; i < radios.length; i++) {\n radios[i].disabled = disabled;\n }\n } else {\n input.disabled = disabled;\n }\n }\n\n function enableButtons() {\n setButtonsDisabled(this, ['confirmButton', 'denyButton', 'cancelButton'], false);\n }\n\n function disableButtons() {\n setButtonsDisabled(this, ['confirmButton', 'denyButton', 'cancelButton'], true);\n }\n\n function enableInput() {\n return setInputDisabled(this.getInput(), false);\n }\n\n function disableInput() {\n return setInputDisabled(this.getInput(), true);\n }\n\n function showValidationMessage(error) {\n var domCache = privateProps.domCache.get(this);\n var params = privateProps.innerParams.get(this);\n setInnerHtml(domCache.validationMessage, error);\n domCache.validationMessage.className = swalClasses['validation-message'];\n\n if (params.customClass && params.customClass.validationMessage) {\n addClass(domCache.validationMessage, params.customClass.validationMessage);\n }\n\n show(domCache.validationMessage);\n var input = this.getInput();\n\n if (input) {\n input.setAttribute('aria-invalid', true);\n input.setAttribute('aria-describedBy', swalClasses['validation-message']);\n focusInput(input);\n addClass(input, swalClasses.inputerror);\n }\n } // Hide block with validation message\n\n\n function resetValidationMessage$1() {\n var domCache = privateProps.domCache.get(this);\n\n if (domCache.validationMessage) {\n hide(domCache.validationMessage);\n }\n\n var input = this.getInput();\n\n if (input) {\n input.removeAttribute('aria-invalid');\n input.removeAttribute('aria-describedBy');\n removeClass(input, swalClasses.inputerror);\n }\n }\n\n function getProgressSteps$1() {\n var domCache = privateProps.domCache.get(this);\n return domCache.progressSteps;\n }\n\n var Timer = /*#__PURE__*/function () {\n function Timer(callback, delay) {\n _classCallCheck(this, Timer);\n\n this.callback = callback;\n this.remaining = delay;\n this.running = false;\n this.start();\n }\n\n _createClass(Timer, [{\n key: \"start\",\n value: function start() {\n if (!this.running) {\n this.running = true;\n this.started = new Date();\n this.id = setTimeout(this.callback, this.remaining);\n }\n\n return this.remaining;\n }\n }, {\n key: \"stop\",\n value: function stop() {\n if (this.running) {\n this.running = false;\n clearTimeout(this.id);\n this.remaining -= new Date() - this.started;\n }\n\n return this.remaining;\n }\n }, {\n key: \"increase\",\n value: function increase(n) {\n var running = this.running;\n\n if (running) {\n this.stop();\n }\n\n this.remaining += n;\n\n if (running) {\n this.start();\n }\n\n return this.remaining;\n }\n }, {\n key: \"getTimerLeft\",\n value: function getTimerLeft() {\n if (this.running) {\n this.stop();\n this.start();\n }\n\n return this.remaining;\n }\n }, {\n key: \"isRunning\",\n value: function isRunning() {\n return this.running;\n }\n }]);\n\n return Timer;\n }();\n\n var defaultInputValidators = {\n email: function email(string, validationMessage) {\n return /^[a-zA-Z0-9.+_-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z0-9-]{2,24}$/.test(string) ? Promise.resolve() : Promise.resolve(validationMessage || 'Invalid email address');\n },\n url: function url(string, validationMessage) {\n // taken from https://stackoverflow.com/a/3809435 with a small change from #1306 and #2013\n return /^https?:\\/\\/(www\\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\\.[a-z]{2,63}\\b([-a-zA-Z0-9@:%_+.~#?&/=]*)$/.test(string) ? Promise.resolve() : Promise.resolve(validationMessage || 'Invalid URL');\n }\n };\n\n function setDefaultInputValidators(params) {\n // Use default `inputValidator` for supported input types if not provided\n if (!params.inputValidator) {\n Object.keys(defaultInputValidators).forEach(function (key) {\n if (params.input === key) {\n params.inputValidator = defaultInputValidators[key];\n }\n });\n }\n }\n\n function validateCustomTargetElement(params) {\n // Determine if the custom target element is valid\n if (!params.target || typeof params.target === 'string' && !document.querySelector(params.target) || typeof params.target !== 'string' && !params.target.appendChild) {\n warn('Target parameter is not valid, defaulting to \"body\"');\n params.target = 'body';\n }\n }\n /**\n * Set type, text and actions on popup\n *\n * @param params\n * @returns {boolean}\n */\n\n\n function setParameters(params) {\n setDefaultInputValidators(params); // showLoaderOnConfirm && preConfirm\n\n if (params.showLoaderOnConfirm && !params.preConfirm) {\n warn('showLoaderOnConfirm is set to true, but preConfirm is not defined.\\n' + 'showLoaderOnConfirm should be used together with preConfirm, see usage example:\\n' + 'https://sweetalert2.github.io/#ajax-request');\n } // params.animation will be actually used in renderPopup.js\n // but in case when params.animation is a function, we need to call that function\n // before popup (re)initialization, so it'll be possible to check Swal.isVisible()\n // inside the params.animation function\n\n\n params.animation = callIfFunction(params.animation);\n validateCustomTargetElement(params); // Replace newlines with
in title\n\n if (typeof params.title === 'string') {\n params.title = params.title.split('\\n').join('
');\n }\n\n init(params);\n }\n\n var swalStringParams = ['swal-title', 'swal-html', 'swal-footer'];\n\n var getTemplateParams = function getTemplateParams(params) {\n var template = typeof params.template === 'string' ? document.querySelector(params.template) : params.template;\n\n if (!template) {\n return {};\n }\n\n var templateContent = template.content || template; // IE11\n\n showWarningsForElements(templateContent);\n\n var result = _extends(getSwalParams(templateContent), getSwalButtons(templateContent), getSwalImage(templateContent), getSwalIcon(templateContent), getSwalInput(templateContent), getSwalStringParams(templateContent, swalStringParams));\n\n return result;\n };\n\n var getSwalParams = function getSwalParams(templateContent) {\n var result = {};\n toArray(templateContent.querySelectorAll('swal-param')).forEach(function (param) {\n showWarningsForAttributes(param, ['name', 'value']);\n var paramName = param.getAttribute('name');\n var value = param.getAttribute('value');\n\n if (typeof defaultParams[paramName] === 'boolean' && value === 'false') {\n value = false;\n }\n\n if (_typeof(defaultParams[paramName]) === 'object') {\n value = JSON.parse(value);\n }\n\n result[paramName] = value;\n });\n return result;\n };\n\n var getSwalButtons = function getSwalButtons(templateContent) {\n var result = {};\n toArray(templateContent.querySelectorAll('swal-button')).forEach(function (button) {\n showWarningsForAttributes(button, ['type', 'color', 'aria-label']);\n var type = button.getAttribute('type');\n result[\"\".concat(type, \"ButtonText\")] = button.innerHTML;\n result[\"show\".concat(capitalizeFirstLetter(type), \"Button\")] = true;\n\n if (button.hasAttribute('color')) {\n result[\"\".concat(type, \"ButtonColor\")] = button.getAttribute('color');\n }\n\n if (button.hasAttribute('aria-label')) {\n result[\"\".concat(type, \"ButtonAriaLabel\")] = button.getAttribute('aria-label');\n }\n });\n return result;\n };\n\n var getSwalImage = function getSwalImage(templateContent) {\n var result = {};\n var image = templateContent.querySelector('swal-image');\n\n if (image) {\n showWarningsForAttributes(image, ['src', 'width', 'height', 'alt']);\n\n if (image.hasAttribute('src')) {\n result.imageUrl = image.getAttribute('src');\n }\n\n if (image.hasAttribute('width')) {\n result.imageWidth = image.getAttribute('width');\n }\n\n if (image.hasAttribute('height')) {\n result.imageHeight = image.getAttribute('height');\n }\n\n if (image.hasAttribute('alt')) {\n result.imageAlt = image.getAttribute('alt');\n }\n }\n\n return result;\n };\n\n var getSwalIcon = function getSwalIcon(templateContent) {\n var result = {};\n var icon = templateContent.querySelector('swal-icon');\n\n if (icon) {\n showWarningsForAttributes(icon, ['type', 'color']);\n\n if (icon.hasAttribute('type')) {\n result.icon = icon.getAttribute('type');\n }\n\n if (icon.hasAttribute('color')) {\n result.iconColor = icon.getAttribute('color');\n }\n\n result.iconHtml = icon.innerHTML;\n }\n\n return result;\n };\n\n var getSwalInput = function getSwalInput(templateContent) {\n var result = {};\n var input = templateContent.querySelector('swal-input');\n\n if (input) {\n showWarningsForAttributes(input, ['type', 'label', 'placeholder', 'value']);\n result.input = input.getAttribute('type') || 'text';\n\n if (input.hasAttribute('label')) {\n result.inputLabel = input.getAttribute('label');\n }\n\n if (input.hasAttribute('placeholder')) {\n result.inputPlaceholder = input.getAttribute('placeholder');\n }\n\n if (input.hasAttribute('value')) {\n result.inputValue = input.getAttribute('value');\n }\n }\n\n var inputOptions = templateContent.querySelectorAll('swal-input-option');\n\n if (inputOptions.length) {\n result.inputOptions = {};\n toArray(inputOptions).forEach(function (option) {\n showWarningsForAttributes(option, ['value']);\n var optionValue = option.getAttribute('value');\n var optionName = option.innerHTML;\n result.inputOptions[optionValue] = optionName;\n });\n }\n\n return result;\n };\n\n var getSwalStringParams = function getSwalStringParams(templateContent, paramNames) {\n var result = {};\n\n for (var i in paramNames) {\n var paramName = paramNames[i];\n var tag = templateContent.querySelector(paramName);\n\n if (tag) {\n showWarningsForAttributes(tag, []);\n result[paramName.replace(/^swal-/, '')] = tag.innerHTML.trim();\n }\n }\n\n return result;\n };\n\n var showWarningsForElements = function showWarningsForElements(template) {\n var allowedElements = swalStringParams.concat(['swal-param', 'swal-button', 'swal-image', 'swal-icon', 'swal-input', 'swal-input-option']);\n toArray(template.querySelectorAll('*')).forEach(function (el) {\n if (el.parentNode !== template) {\n // can't use template.children because of IE11\n return;\n }\n\n var tagName = el.tagName.toLowerCase();\n\n if (allowedElements.indexOf(tagName) === -1) {\n warn(\"Unrecognized element <\".concat(tagName, \">\"));\n }\n });\n };\n\n var showWarningsForAttributes = function showWarningsForAttributes(el, allowedAttributes) {\n toArray(el.attributes).forEach(function (attribute) {\n if (allowedAttributes.indexOf(attribute.name) === -1) {\n warn([\"Unrecognized attribute \\\"\".concat(attribute.name, \"\\\" on <\").concat(el.tagName.toLowerCase(), \">.\"), \"\".concat(allowedAttributes.length ? \"Allowed attributes are: \".concat(allowedAttributes.join(', ')) : 'To set the value, use HTML within the element.')]);\n }\n });\n };\n\n var SHOW_CLASS_TIMEOUT = 10;\n /**\n * Open popup, add necessary classes and styles, fix scrollbar\n *\n * @param params\n */\n\n var openPopup = function openPopup(params) {\n var container = getContainer();\n var popup = getPopup();\n\n if (typeof params.willOpen === 'function') {\n params.willOpen(popup);\n } else if (typeof params.onBeforeOpen === 'function') {\n params.onBeforeOpen(popup); // @deprecated\n }\n\n var bodyStyles = window.getComputedStyle(document.body);\n var initialBodyOverflow = bodyStyles.overflowY;\n addClasses$1(container, popup, params); // scrolling is 'hidden' until animation is done, after that 'auto'\n\n setTimeout(function () {\n setScrollingVisibility(container, popup);\n }, SHOW_CLASS_TIMEOUT);\n\n if (isModal()) {\n fixScrollContainer(container, params.scrollbarPadding, initialBodyOverflow);\n setAriaHidden();\n }\n\n if (!isToast() && !globalState.previousActiveElement) {\n globalState.previousActiveElement = document.activeElement;\n }\n\n runDidOpen(popup, params);\n removeClass(container, swalClasses['no-transition']);\n };\n\n var runDidOpen = function runDidOpen(popup, params) {\n if (typeof params.didOpen === 'function') {\n setTimeout(function () {\n return params.didOpen(popup);\n });\n } else if (typeof params.onOpen === 'function') {\n setTimeout(function () {\n return params.onOpen(popup);\n }); // @deprecated\n }\n };\n\n var swalOpenAnimationFinished = function swalOpenAnimationFinished(event) {\n var popup = getPopup();\n\n if (event.target !== popup) {\n return;\n }\n\n var container = getContainer();\n popup.removeEventListener(animationEndEvent, swalOpenAnimationFinished);\n container.style.overflowY = 'auto';\n };\n\n var setScrollingVisibility = function setScrollingVisibility(container, popup) {\n if (animationEndEvent && hasCssAnimation(popup)) {\n container.style.overflowY = 'hidden';\n popup.addEventListener(animationEndEvent, swalOpenAnimationFinished);\n } else {\n container.style.overflowY = 'auto';\n }\n };\n\n var fixScrollContainer = function fixScrollContainer(container, scrollbarPadding, initialBodyOverflow) {\n iOSfix();\n IEfix();\n\n if (scrollbarPadding && initialBodyOverflow !== 'hidden') {\n fixScrollbar();\n } // sweetalert2/issues/1247\n\n\n setTimeout(function () {\n container.scrollTop = 0;\n });\n };\n\n var addClasses$1 = function addClasses(container, popup, params) {\n addClass(container, params.showClass.backdrop); // the workaround with setting/unsetting opacity is needed for #2019 and 2059\n\n popup.style.setProperty('opacity', '0', 'important');\n show(popup);\n setTimeout(function () {\n // Animate popup right after showing it\n addClass(popup, params.showClass.popup); // and remove the opacity workaround\n\n popup.style.removeProperty('opacity');\n }, SHOW_CLASS_TIMEOUT); // 10ms in order to fix #2062\n\n addClass([document.documentElement, document.body], swalClasses.shown);\n\n if (params.heightAuto && params.backdrop && !params.toast) {\n addClass([document.documentElement, document.body], swalClasses['height-auto']);\n }\n };\n\n var handleInputOptionsAndValue = function handleInputOptionsAndValue(instance, params) {\n if (params.input === 'select' || params.input === 'radio') {\n handleInputOptions(instance, params);\n } else if (['text', 'email', 'number', 'tel', 'textarea'].indexOf(params.input) !== -1 && (hasToPromiseFn(params.inputValue) || isPromise(params.inputValue))) {\n handleInputValue(instance, params);\n }\n };\n\n var getInputValue = function getInputValue(instance, innerParams) {\n var input = instance.getInput();\n\n if (!input) {\n return null;\n }\n\n switch (innerParams.input) {\n case 'checkbox':\n return getCheckboxValue(input);\n\n case 'radio':\n return getRadioValue(input);\n\n case 'file':\n return getFileValue(input);\n\n default:\n return innerParams.inputAutoTrim ? input.value.trim() : input.value;\n }\n };\n\n var getCheckboxValue = function getCheckboxValue(input) {\n return input.checked ? 1 : 0;\n };\n\n var getRadioValue = function getRadioValue(input) {\n return input.checked ? input.value : null;\n };\n\n var getFileValue = function getFileValue(input) {\n return input.files.length ? input.getAttribute('multiple') !== null ? input.files : input.files[0] : null;\n };\n\n var handleInputOptions = function handleInputOptions(instance, params) {\n var content = getContent();\n\n var processInputOptions = function processInputOptions(inputOptions) {\n return populateInputOptions[params.input](content, formatInputOptions(inputOptions), params);\n };\n\n if (hasToPromiseFn(params.inputOptions) || isPromise(params.inputOptions)) {\n showLoading(getConfirmButton());\n asPromise(params.inputOptions).then(function (inputOptions) {\n instance.hideLoading();\n processInputOptions(inputOptions);\n });\n } else if (_typeof(params.inputOptions) === 'object') {\n processInputOptions(params.inputOptions);\n } else {\n error(\"Unexpected type of inputOptions! Expected object, Map or Promise, got \".concat(_typeof(params.inputOptions)));\n }\n };\n\n var handleInputValue = function handleInputValue(instance, params) {\n var input = instance.getInput();\n hide(input);\n asPromise(params.inputValue).then(function (inputValue) {\n input.value = params.input === 'number' ? parseFloat(inputValue) || 0 : \"\".concat(inputValue);\n show(input);\n input.focus();\n instance.hideLoading();\n })[\"catch\"](function (err) {\n error(\"Error in inputValue promise: \".concat(err));\n input.value = '';\n show(input);\n input.focus();\n instance.hideLoading();\n });\n };\n\n var populateInputOptions = {\n select: function select(content, inputOptions, params) {\n var select = getChildByClass(content, swalClasses.select);\n\n var renderOption = function renderOption(parent, optionLabel, optionValue) {\n var option = document.createElement('option');\n option.value = optionValue;\n setInnerHtml(option, optionLabel);\n option.selected = isSelected(optionValue, params.inputValue);\n parent.appendChild(option);\n };\n\n inputOptions.forEach(function (inputOption) {\n var optionValue = inputOption[0];\n var optionLabel = inputOption[1]; //