123456789101112131415161718192021222324252627 |
- <template>
- <div id="output1"></div>
- </template>
- <script>
- import $ from "jquery";
- export default {
- created() {
- // console.log($("#output").pivotUI());
- $(() => {
- $("#output1").pivotUI(
- [
- { color: "blue", shape: "circle" },
- { color: "red", shape: "triangle" },
- ],
- {
- rows: ["color"],
- cols: ["shape"],
- }
- );
- });
- },
- };
- </script>
- <style>
- </style>
|