lifeifan 7 years ago
parent
commit
084da68126
4 changed files with 0 additions and 109 deletions
  1. 0 7
      config.json
  2. 0 72
      src/demo/test.vue
  3. 0 5
      src/package/test/index.js
  4. 0 25
      src/view/test.vue

+ 0 - 7
config.json

@@ -277,13 +277,6 @@
       "type": "component",
       "desc": "图片选取组件。",
       "showDemo": true
-    },
-    {
-      "name": "Test",
-      "chnName": "asds",
-      "desc": "asdsadfdf",
-      "type": "filter",
-      "showDemo": false
     }
   ]
 }

+ 0 - 72
src/demo/test.vue

@@ -1,72 +0,0 @@
-<template>
-    <div>
-       <nut-docheader 
-        :name="$route.name" 
-        :chName="$route.params.chnName" 
-        type="Filter" 
-        desc=""
-        :showQrCode="true"></nut-docheader>
-        <h5>示例</h5>
-        <nut-codebox :code="demo1"></nut-codebox>
-
-        <h5>Props</h5>
-        <div class="tbl-wrapper">
-            <table class="u-full-width">
-            <thead>
-                <tr>
-                <th>参数</th>
-                <th>说明</th>
-                <th>类型</th>
-                <th>默认值</th>
-                <th>可选值</th>
-                </tr>
-            </thead>
-            <tbody>
-                <tr>
-                <td></td>
-                <td></td>
-                <td></td>
-                <td></td>
-                <td></td>
-                </tr>
-            </tbody>
-            </table>
-        </div>
-        
-        <h5>Events</h5>
-        <div class="tbl-wrapper">
-            <table class="u-full-width">
-            <thead>
-                <tr>
-                <th>事件名</th>
-                <th>说明</th>
-                <th>回调参数</th>
-                </tr>
-            </thead>
-            <tbody>
-                <tr>
-                <td></td>
-                <td></td>
-                <td></td>
-                </tr>
-            </tbody>
-            </table>
-        </div>
-    </div>
-    </div>
-</template>
-
-<script>
-export default {
-    data(){
-        return{
-            demo1:`test`
-        }
-    },
-    methods:{
-    }
-}
-</script>
-
-<style lang="scss">
-</style>

+ 0 - 5
src/package/test/index.js

@@ -1,5 +0,0 @@
-Test.install = function(Vue) {
-Vue.filter(Test.name, Test);
-};
-
-export default Test

+ 0 - 25
src/view/test.vue

@@ -1,25 +0,0 @@
-<template>
-    <div>
-        <!-- 组件名和描述 -->
-        <nut-demoheader 
-        :name="$route.name"
-        ></nut-demoheader>
-
-        <!-- DEMO区域 -->
-        <!-- <nut-switch :height="30" :width="60" @switch-on="switchOn" @switch-off="switchOff"></nut-switch> -->
-    </div>
-</template>
-
-<script>
-export default {
-    data(){
-        return{
-        }
-    },
-    methods:{
-    }
-}
-</script>
-
-<style lang="scss">
-</style>