mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: remove mourn
This commit is contained in:
parent
9eb337bd0e
commit
f33ddfda06
@ -1,3 +0,0 @@
|
|||||||
import mourn from './mourn';
|
|
||||||
|
|
||||||
mourn();
|
|
@ -1,4 +1,3 @@
|
|||||||
import mourn from './mourn';
|
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import Locale from '../../src/locale';
|
import Locale from '../../src/locale';
|
||||||
import Lazyload from '../../src/lazyload';
|
import Lazyload from '../../src/lazyload';
|
||||||
@ -6,8 +5,6 @@ import { get } from '../../src/utils';
|
|||||||
import { camelize } from '../../src/utils/format/string';
|
import { camelize } from '../../src/utils/format/string';
|
||||||
import enUS from '../../src/locale/lang/en-US';
|
import enUS from '../../src/locale/lang/en-US';
|
||||||
|
|
||||||
mourn();
|
|
||||||
|
|
||||||
Vue.use(Lazyload, {
|
Vue.use(Lazyload, {
|
||||||
lazyComponent: true,
|
lazyComponent: true,
|
||||||
});
|
});
|
||||||
|
@ -1,18 +0,0 @@
|
|||||||
export default function () {
|
|
||||||
const now = new Date();
|
|
||||||
|
|
||||||
if (
|
|
||||||
now.getFullYear() === 2020 &&
|
|
||||||
now.getMonth() === 3 &&
|
|
||||||
now.getDate() === 4
|
|
||||||
) {
|
|
||||||
const filter = `
|
|
||||||
html{
|
|
||||||
filter: grayscale(100%);
|
|
||||||
-webkit-filter: grayscale(100%);
|
|
||||||
-moz-filter: grayscale(100%);
|
|
||||||
}
|
|
||||||
`;
|
|
||||||
document.head.insertAdjacentHTML('beforeend', `<style>${filter}</style>`);
|
|
||||||
}
|
|
||||||
}
|
|
@ -51,7 +51,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
// eslint-disable-next-line
|
// eslint-disable-next-line object-shorthand
|
||||||
'$route.path'() {
|
'$route.path'() {
|
||||||
this.setNav();
|
this.setNav();
|
||||||
},
|
},
|
||||||
@ -88,7 +88,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
keyboardHandler() {
|
keyboardHandler() {
|
||||||
window.addEventListener('keyup', event => {
|
window.addEventListener('keyup', (event) => {
|
||||||
switch (event.keyCode) {
|
switch (event.keyCode) {
|
||||||
case 37: // left
|
case 37: // left
|
||||||
this.keyboardNav('prev');
|
this.keyboardNav('prev');
|
||||||
|
@ -5,7 +5,6 @@ module.exports = function () {
|
|||||||
|
|
||||||
return {
|
return {
|
||||||
entry: {
|
entry: {
|
||||||
'site-desktop': ['./docs/site/desktop'],
|
|
||||||
'site-mobile': ['./docs/site/mobile'],
|
'site-mobile': ['./docs/site/mobile'],
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user