1234567891011121314151617181920 |
- <template>
- <div class='route_container'>
- <input-editor></input-editor>
- </div>
- </template>
- <script>
- import InputEditor from '../InputEditor'
- export default {
- name: 'Thread',
- components: {
- InputEditor
- }
- }
- </script>
- <style lang='scss' scoped>
-
- </style>
|