调用示例

.vue文件中调用组件

  1. <template>
  2. <div>
  3. <group>
  4. <cell title="title" value="value"></cell>
  5. </group>
  6. </div>
  7. </template>
  8. <script>
  9. import { Group, Cell } from 'vux'
  10. export default {
  11. components: {
  12. Group,
  13. Cell
  14. }
  15. }
  16. </script>

main.js中调用plugin

  1. import { AlertPlugin, ToastPlugin } from 'vux'
  2. Vue.use(AlertPlugin)
  3. Vue.use(ToastPlugin)
  4. // 详细使用请参考对应组件文档