Thread.vue 269 B

1234567891011121314151617181920
  1. <template>
  2. <div class='route_container'>
  3. <input-editor></input-editor>
  4. </div>
  5. </template>
  6. <script>
  7. import InputEditor from '../InputEditor'
  8. export default {
  9. name: 'Thread',
  10. components: {
  11. InputEditor
  12. }
  13. }
  14. </script>
  15. <style lang='scss' scoped>
  16. </style>