Skip to content

Commit

Permalink
bump dependencies, fix demo component names (rel: #16)
Browse files Browse the repository at this point in the history
  • Loading branch information
lzurbriggen committed Feb 2, 2022
1 parent 65e5581 commit be78ead
Show file tree
Hide file tree
Showing 13 changed files with 2,753 additions and 7,645 deletions.
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
node_modules
dist
distDocs
coverage
dev/language
docs/language/translations.json
Expand Down
42 changes: 21 additions & 21 deletions dev/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,58 +4,58 @@
<div :class="$style.container">
<div :class="$style.tile">
<h2>Alert</h2>
<Alert></Alert>
<DemoAlert></DemoAlert>
</div>

<div :class="$style.tile">
<h2>Plural</h2>
<Plural></Plural>
<DemoPlural></DemoPlural>
</div>

<div :class="$style.tile">
<h2>Filter</h2>
<DateFormat></DateFormat>
<DemoDateFormat></DemoDateFormat>
</div>
<div :class="$style.tile">
<h2>Custom tags</h2>
<CustomTags></CustomTags>
<DemoCustomTags></DemoCustomTags>
</div>
<div :class="$style.tile">
<h2>Multilines</h2>
<Multilines></Multilines>
<DemoMultilines></DemoMultilines>
</div>
<div :class="$style.tile">
<h2>Directive</h2>
<Directive></Directive>
<DemoDirective></DemoDirective>
</div>
<div :class="$style.tile">
<h2>If</h2>
<If></If>
<DemoIf></DemoIf>
</div>
</div>
</template>

<script>
import Alert from "./components/alert.vue";
import CustomTags from "./components/customTags.vue";
import Directive from "./components/directive.vue";
import If from "./components/if.vue";
import DemoAlert from "./components/DemoAlert.vue";
import DemoCustomTags from "./components/DemoCustomTags.vue";
import DemoDateFormat from "./components/DemoDateFormat.vue";
import DemoDirective from "./components/DemoDirective.vue";
import DemoIf from "./components/DemoIf.vue";
import DemoMultilines from "./components/DemoMultilines.vue";
import DemoPlural from "./components/DemoPlural.vue";
import LanguageSelect from "./components/languageSelect.vue";
import DateFormat from "./components/dateFormat.vue";
import Multilines from "./components/multilines.vue";
import Plural from "./components/plural.vue";
export default {
name: "App",
components: {
Alert,
CustomTags,
Directive,
If,
DemoAlert,
DemoCustomTags,
DemoDirective,
DemoIf,
DemoDateFormat,
DemoMultilines,
DemoPlural,
LanguageSelect,
DateFormat,
Multilines,
Plural,
},
};
</script>
Expand Down
2 changes: 0 additions & 2 deletions dev/components/alert.vue → dev/components/DemoAlert.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
</template>

<script>
import { useGettext } from "/@gettext/";
export default {
data: () => ({
n: 2,
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Loading

0 comments on commit be78ead

Please sign in to comment.