Discover: sidebarFilter Funnel to be decided.

This commit is contained in:
chiayin
2023-04-17 13:38:28 +08:00
parent aa52c4bce1
commit 2d48c244a1
4 changed files with 119 additions and 21 deletions

View File

@@ -35,6 +35,7 @@ import ColumnGroup from 'primevue/columngroup'; // optional
import Row from 'primevue/row'; // optional
import RadioButton from 'primevue/radiobutton';
import PickList from 'primevue/picklist';
import Timeline from 'primevue/timeline';
const emitter = mitt();
const app = createApp(App);
@@ -60,6 +61,7 @@ app.use(pinia);
app.use(router);
app.use(VueAxios, axios);
app.use(ToastPlugin, { // use `this.$toast` in Vue.js
position: 'bottom',
duration: 5000,
});
app.use(PrimeVue);
@@ -76,6 +78,7 @@ app.component('ColumnGroup', ColumnGroup);
app.component('Row', Row);
app.component('RadioButton', RadioButton);
app.component('PickList', PickList);
app.component('Timeline', Timeline);
app.component('Draggable', draggable); // 拖曳
app.mount("#app");