update site

This commit is contained in:
tangjinzhou 2019-01-12 18:52:58 +08:00
parent 1a6ba14d59
commit f686674dfc
4 changed files with 16 additions and 1 deletions

View File

@ -5,7 +5,7 @@ set -e # exit with nonzero exit code if anything fails
BUMP="bump " BUMP="bump "
SITE="update site" SITE="update site"
if [[ $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]] && [[ $TRAVIS_COMMIT_MESSAGE == *$BUMP* || $TRAVIS_COMMIT_MESSAGE == $SITE ]]; then if [[ $TRAVIS_BRANCH == "master" && $TRAVIS_PULL_REQUEST == "false" ]] && [[ $TRAVIS_COMMIT_MESSAGE == *$BUMP* || $TRAVIS_COMMIT_MESSAGE == *$SITE* ]]; then
echo "Starting to update gh-pages\n" echo "Starting to update gh-pages\n"

View File

@ -17,6 +17,12 @@ export default {
type: 'Data Display', type: 'Data Display',
title: 'Comment', title: 'Comment',
}, },
configProvider: {
category: 'Components',
subtitle: '全局化配置',
type: 'Other',
title: 'ConfigProvider',
},
breadcrumb: { breadcrumb: {
category: 'Components', category: 'Components',
subtitle: '面包屑', subtitle: '面包屑',

View File

@ -431,4 +431,12 @@ export default [
path: 'comment-cn', path: 'comment-cn',
component: () => import('../components/comment/demo/index.vue'), component: () => import('../components/comment/demo/index.vue'),
}, },
{
path: 'config-provider',
component: () => import('../components/config-provider/demo/index.vue'),
},
{
path: 'config-provider-cn',
component: () => import('../components/config-provider/demo/index.vue'),
},
]; ];

View File

@ -1,6 +1,7 @@
import 'babel-polyfill'; import 'babel-polyfill';
import '../components/style.js'; import '../components/style.js';
import './index.less'; import './index.less';
import 'nprogress/nprogress.css';
import 'highlight.js/styles/solarized-light.css'; import 'highlight.js/styles/solarized-light.css';
import Vue from 'vue'; import Vue from 'vue';
import VueI18n from 'vue-i18n'; import VueI18n from 'vue-i18n';