nav tabs on admin dashboard
This commit is contained in:
6
node_modules/vue-style-loader/lib/addStylesClient.js
generated
vendored
6
node_modules/vue-style-loader/lib/addStylesClient.js
generated
vendored
@@ -4,6 +4,8 @@
|
||||
Modified by Evan You @yyx990803
|
||||
*/
|
||||
|
||||
import listToStyles from './listToStyles'
|
||||
|
||||
var hasDocument = typeof document !== 'undefined'
|
||||
|
||||
if (typeof DEBUG !== 'undefined' && DEBUG) {
|
||||
@@ -14,8 +16,6 @@ if (typeof DEBUG !== 'undefined' && DEBUG) {
|
||||
) }
|
||||
}
|
||||
|
||||
var listToStyles = require('./listToStyles')
|
||||
|
||||
/*
|
||||
type StyleObject = {
|
||||
id: number;
|
||||
@@ -49,7 +49,7 @@ var ssrIdKey = 'data-vue-ssr-id'
|
||||
// tags it will allow on a page
|
||||
var isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\b/.test(navigator.userAgent.toLowerCase())
|
||||
|
||||
module.exports = function (parentId, list, _isProduction, _options) {
|
||||
export default function addStylesClient (parentId, list, _isProduction, _options) {
|
||||
isProduction = _isProduction
|
||||
|
||||
options = _options || {}
|
||||
|
||||
4
node_modules/vue-style-loader/lib/addStylesServer.js
generated
vendored
4
node_modules/vue-style-loader/lib/addStylesServer.js
generated
vendored
@@ -1,6 +1,6 @@
|
||||
var listToStyles = require('./listToStyles')
|
||||
import listToStyles from './listToStyles'
|
||||
|
||||
module.exports = function (parentId, list, isProduction, context) {
|
||||
export default function addStylesServer (parentId, list, isProduction, context) {
|
||||
if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
|
||||
context = __VUE_SSR_CONTEXT__
|
||||
}
|
||||
|
||||
2
node_modules/vue-style-loader/lib/listToStyles.js
generated
vendored
2
node_modules/vue-style-loader/lib/listToStyles.js
generated
vendored
@@ -2,7 +2,7 @@
|
||||
* Translates the list format produced by css-loader into something
|
||||
* easier to manipulate.
|
||||
*/
|
||||
module.exports = function listToStyles (parentId, list) {
|
||||
export default function listToStyles (parentId, list) {
|
||||
var styles = []
|
||||
var newStyles = {}
|
||||
for (var i = 0; i < list.length; i++) {
|
||||
|
||||
Reference in New Issue
Block a user