App.vue 324 B

12345678910111213141516171819202122
  1. <template>
  2. <div id="app">
  3. <RpDragResize :config="config" :type="type"></RpDragResize>
  4. </div>
  5. </template>
  6. <script>
  7. import {RpDragResize} from './../packages/index'
  8. export default {
  9. name: 'App',
  10. components: {
  11. RpDragResize
  12. },
  13. data () {
  14. return {
  15. }
  16. },
  17. }
  18. </script>
  19. <style lang="scss">
  20. </style>