12345678910111213141516171819202122 |
- <template>
- <div id="app">
- <RpDragResize :config="config" :type="type"></RpDragResize>
- </div>
- </template>
- <script>
- import {RpDragResize} from './../packages/index'
- export default {
- name: 'App',
- components: {
- RpDragResize
- },
- data () {
- return {
- }
- },
- }
- </script>
- <style lang="scss">
- </style>
|