Test.vue 577 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <div class="custom-tree-container">
  3. <div class="block">
  4. <p> 萨达萨达多福多寿</p>
  5. </div>
  6. </div>
  7. </template>
  8. <style scoped>
  9. .custom-tree-node {
  10. flex: 1;
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-between;
  14. font-size: 14px;
  15. padding-right: 8px;
  16. }
  17. </style>
  18. <script>
  19. export default {
  20. props: [],
  21. data() {
  22. return {
  23. };
  24. },
  25. mounted() {
  26. },
  27. methods: {
  28. }
  29. }
  30. </script>