Repository: incubator-weex Updated Branches: refs/heads/master cecc53bbe -> 43564f3b2
http://git-wip-us.apache.org/repos/asf/incubator-weex/blob/43564f3b/ios/playground/bundlejs/vue/syntax/template-class.js ---------------------------------------------------------------------- diff --git a/ios/playground/bundlejs/vue/syntax/template-class.js b/ios/playground/bundlejs/vue/syntax/template-class.js deleted file mode 100644 index c6969d9..0000000 --- a/ios/playground/bundlejs/vue/syntax/template-class.js +++ /dev/null @@ -1,165 +0,0 @@ -// { "framework": "Vue" } - -/******/ (function(modules) { // webpackBootstrap -/******/ // The module cache -/******/ var installedModules = {}; - -/******/ // The require function -/******/ function __webpack_require__(moduleId) { - -/******/ // Check if module is in cache -/******/ if(installedModules[moduleId]) -/******/ return installedModules[moduleId].exports; - -/******/ // Create a new module (and put it into the cache) -/******/ var module = installedModules[moduleId] = { -/******/ exports: {}, -/******/ id: moduleId, -/******/ loaded: false -/******/ }; - -/******/ // Execute the module function -/******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); - -/******/ // Flag the module as loaded -/******/ module.loaded = true; - -/******/ // Return the exports of the module -/******/ return module.exports; -/******/ } - - -/******/ // expose the modules object (__webpack_modules__) -/******/ __webpack_require__.m = modules; - -/******/ // expose the module cache -/******/ __webpack_require__.c = installedModules; - -/******/ // __webpack_public_path__ -/******/ __webpack_require__.p = ""; - -/******/ // Load entry module and return exports -/******/ return __webpack_require__(0); -/******/ }) -/************************************************************************/ -/******/ ({ - -/***/ 0: -/***/ (function(module, exports, __webpack_require__) { - - var __vue_exports__, __vue_options__ - var __vue_styles__ = [] - - /* styles */ - __vue_styles__.push(__webpack_require__(255) - ) - - /* script */ - __vue_exports__ = __webpack_require__(256) - - /* template */ - var __vue_template__ = __webpack_require__(257) - __vue_options__ = __vue_exports__ = __vue_exports__ || {} - if ( - typeof __vue_exports__.default === "object" || - typeof __vue_exports__.default === "function" - ) { - if (Object.keys(__vue_exports__).some(function (key) { return key !== "default" && key !== "__esModule" })) {console.error("named exports are not supported in *.vue files.")} - __vue_options__ = __vue_exports__ = __vue_exports__.default - } - if (typeof __vue_options__ === "function") { - __vue_options__ = __vue_options__.options - } - __vue_options__.__file = "/Users/Hanks/Codes/work/incubator-weex/examples/vue/syntax/template-class.vue" - __vue_options__.render = __vue_template__.render - __vue_options__.staticRenderFns = __vue_template__.staticRenderFns - __vue_options__._scopeId = "data-v-8a4acb8e" - __vue_options__.style = __vue_options__.style || {} - __vue_styles__.forEach(function (module) { - for (var name in module) { - __vue_options__.style[name] = module[name] - } - }) - if (typeof __register_static_styles__ === "function") { - __register_static_styles__(__vue_options__._scopeId, __vue_styles__) - } - - module.exports = __vue_exports__ - module.exports.el = 'true' - new Vue(module.exports) - - -/***/ }), - -/***/ 255: -/***/ (function(module, exports) { - - module.exports = { - "a": { - "fontSize": 48 - }, - "b": { - "color": "#ff0000" - } - } - -/***/ }), - -/***/ 256: -/***/ (function(module, exports) { - - 'use strict'; - - // - // - // - // - // - // - // - // - // - // - // - // - // - // - // - // - // - - module.exports = { - data: { - x: '' - }, - methods: { - update: function update(e) { - this.x = 'b'; - console.log('x', this.x); - } - } - }; - -/***/ }), - -/***/ 257: -/***/ (function(module, exports) { - - module.exports={render:function (){var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h; - return _c('div', { - on: { - "click": _vm.update - } - }, [_c('text', { - staticClass: ["a"] - }, [_vm._v("Hello")]), _c('text', { - staticClass: ["b"] - }, [_vm._v("Hello")]), _c('text', { - class: ['a', _vm.x] - }, [_vm._v("Hello")])]) - },staticRenderFns: []} - module.exports.render._withStripped = true - -/***/ }) - -/******/ }); \ No newline at end of file
