ParamPrintTemplate.vue 285 B

1234567891011121314151617
  1. <template>
  2. <template-manage
  3. class="param-card-template"
  4. template-type="VARIABLE"
  5. ></template-manage>
  6. </template>
  7. <script>
  8. import TemplateManage from "./TemplateManage";
  9. export default {
  10. name: "param-card-template",
  11. components: {
  12. TemplateManage,
  13. },
  14. };
  15. </script>