Add deep-select component and fix a popup bug. (#103)

* feat: new deep select

* fix: add deep-select test

* fix: import

* fix: icon import
This commit is contained in:
WyTiny
2017-09-01 10:15:53 +08:00
committed by Yao
parent c594091955
commit 1418117681
10 changed files with 392 additions and 15 deletions
+2 -1
View File
@@ -34,6 +34,7 @@ module.exports = {
chunkFilename: 'async.[name].js'
},
devServer: {
host: '0.0.0.0',
historyApiFallback: {
rewrites: [
{ from: /^\/zanui\/vue\/examples/, to: '/examples.html' },
@@ -114,7 +115,7 @@ module.exports = {
},
render: function(tokens, idx) {
return tokens[idx].nesting === 1
return tokens[idx].nesting === 1
? `<demo-block class="demo-box"><div class="highlight" slot="highlight"å>`
:`</div></demo-block>\n`;
}