Skip to content

Commit

Permalink
example apps updated to emit less console statements
Browse files Browse the repository at this point in the history
  • Loading branch information
verena-ifx authored and verena-ifx committed Dec 4, 2023
1 parent a4a6248 commit 95911f0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const current = computed(() => {
onMounted(() => {
updatePage();
setInterval(updatePage, 10000);
setInterval(updatePage, 100000);
})
function handleChange() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const progressValue = ref(50);
onMounted(() => {
updateProgress();
setInterval(updateProgress, 50000);
setInterval(updateProgress, 100000);
})
const progress = computed(() => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const progress = computed(() => {
onMounted(() => {
updateProgress();
setInterval(updateProgress, 50000);
setInterval(updateProgress, 100000);
})
function handleChange() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function setTab() {
const next = Math.floor(Math.random() * (3));
console.log("set next active tab: ", next)
if (tabsElement.value) {
tabsElement.value.setActiveTab(next);
tabsElement.value.$el.setActiveTab(next);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ let inputValue = ref("");
onMounted(() => {
updateTextInput();
setInterval(updateTextInput, 50000);
setInterval(updateTextInput, 100000);
})
function updateTextInput() {
Expand Down
1 change: 1 addition & 0 deletions packages/components/stencil.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const config: Config = {
extras: {
cloneNodeFix: true,
enableImportInjection: true,
experimentalImportInjection: true,
},

outputTargets: [
Expand Down

0 comments on commit 95911f0

Please sign in to comment.