Skip to content

Commit

Permalink
use <foo-bar> instead of <FooBar> for custom element
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Oct 22, 2024
1 parent cc7ea9d commit 060e793
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions examples/kitchen-sink-vue/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<script setup lang="ts">
import './KitchenSink.js'
import {FooBar} from './FooBar.ce.js'
// import {FooBar} from './FooBar.ce.js'
import './FooBar.ce.js'
</script>

<template>
<!-- not working (expected type error): -->
<FooBar :foo="true" />
<!-- <foo-bar :foo="true" /> -->
<!-- <FooBar :foo="true" /> -->
<foo-bar :foo="true" />
<!-- <fooBar :foo="true" /> -->

<!-- <kitchen-sink :count="123" :foo="true"></kitchen-sink> -->
Expand Down

0 comments on commit 060e793

Please sign in to comment.