nav tabs on admin dashboard

This commit is contained in:
2019-03-07 00:20:34 -06:00
parent f73d6ae228
commit e4f473f376
11661 changed files with 216240 additions and 1544253 deletions

View File

@@ -2,6 +2,8 @@ This is an internal package used by `vue-loader` and `vueify`. It processes the
1. add support to ES2015 features in template expressions via Buble. (see [supported features here](https://buble.surge.sh/guide/#supported-features)).
**Note:** since version 1.8.0, object rest spread usage inside templates are transpiled to `Object.assign` calls by default. This means if you need to support IE, you will need to polyfill `Object.assign`. (Latest version of Vue CLI will do this for you).
2. remove the `with` block inside render functions to make it strict-mode compliant. This is performed only at build time so that the base template compiler can be extremely small and lightweight.
The buble implementation is built from a fork at https://github.com/yyx990803/buble

File diff suppressed because one or more lines are too long

View File

@@ -8,7 +8,9 @@ var defaultOptions = {
stripWith: true,
// custom feature ensures with context targets functional render
stripWithFunctional: false
}
},
// allow spread...
objectAssign: 'Object.assign'
}
module.exports = function transpile (code, opts) {

View File

@@ -1,42 +1,46 @@
{
"_from": "vue-template-es2015-compiler@^1.6.0",
"_id": "vue-template-es2015-compiler@1.6.0",
"_from": "vue-template-es2015-compiler@^1.9.0",
"_id": "vue-template-es2015-compiler@1.9.1",
"_inBundle": false,
"_integrity": "sha512-x3LV3wdmmERhVCYy3quqA57NJW7F3i6faas++pJQWtknWT+n7k30F4TVdHvCLn48peTJFRvCpxs3UuFPqgeELg==",
"_integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==",
"_location": "/vue-template-es2015-compiler",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "vue-template-es2015-compiler@^1.6.0",
"raw": "vue-template-es2015-compiler@^1.9.0",
"name": "vue-template-es2015-compiler",
"escapedName": "vue-template-es2015-compiler",
"rawSpec": "^1.6.0",
"rawSpec": "^1.9.0",
"saveSpec": null,
"fetchSpec": "^1.6.0"
"fetchSpec": "^1.9.0"
},
"_requiredBy": [
"/vue-loader"
"/@vue/component-compiler-utils"
],
"_resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.6.0.tgz",
"_shasum": "dc42697133302ce3017524356a6c61b7b69b4a18",
"_spec": "vue-template-es2015-compiler@^1.6.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\vue-loader",
"_resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz",
"_shasum": "1ee3bc9a16ecbf5118be334bb15f9c46f82f5825",
"_spec": "vue-template-es2015-compiler@^1.9.0",
"_where": "C:\\xampp\\htdocs\\w4rpservices\\node_modules\\@vue\\component-compiler-utils",
"author": {
"name": "Evan You"
},
"bugs": {
"url": "https://github.com/vuejs/vue-template-es2015-compiler/issues"
},
"bundleDependencies": false,
"deprecated": false,
"description": "Post compiler for Vue template render functions to support ES2015+ features",
"devDependencies": {
"jest": "^21.2.1",
"vue": "^2.4.4",
"vue-template-compiler": "^2.4.4"
"jest": "^24.1.0",
"vue": "^2.6.0",
"vue-template-compiler": "^2.6.0"
},
"files": [
"index.js",
"buble.js"
],
"homepage": "https://github.com/vuejs/vue-template-es2015-compiler#readme",
"jest": {
"testPathIgnorePatterns": [
"/node_modules/",
@@ -46,10 +50,14 @@
"license": "MIT",
"main": "index.js",
"name": "vue-template-es2015-compiler",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-template-es2015-compiler.git"
},
"scripts": {
"build": "cd buble && npm run build && cp dist/buble.deps.js ../buble.js",
"prepublishOnly": "npm run build",
"build": "cd buble && npm run build && cp dist/buble-browser-deps.umd.js ../buble.js",
"prepublishOnly": "jest && npm run build",
"test": "jest"
},
"version": "1.6.0"
"version": "1.9.1"
}