simple-ui.vue 468 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div id="output1"></div>
  3. </template>
  4. <script>
  5. import $ from "jquery";
  6. export default {
  7. created() {
  8. // console.log($("#output").pivotUI());
  9. $(() => {
  10. $("#output1").pivotUI(
  11. [
  12. { color: "blue", shape: "circle" },
  13. { color: "red", shape: "triangle" },
  14. ],
  15. {
  16. rows: ["color"],
  17. cols: ["shape"],
  18. }
  19. );
  20. });
  21. },
  22. };
  23. </script>
  24. <style>
  25. </style>