Browse Source

feat(table): add table component

suzigang 4 years ago
parent
commit
1a2889564c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sites/mobile-taro/vue/src/app.ts

+ 1 - 1
src/sites/mobile-taro/vue/src/app.ts

@@ -5,7 +5,7 @@ import NutUI from '../../../../packages/nutui.taro.vue';
 // import '@nutui/nutui-taro/dist/style.css';
 const App = createApp({
   onShow(options) {}
-  // 入口组件不需要实现 render 方法,即使实现了也会被 taro 所覆盖
+  // 入口组件不需要实现 render 方法,即使实现了也会被 taro所覆盖
 }).use(NutUI);
 
 export default App;