mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 13:57:10 -04:00
chore(lint): switched to a better lint config
This commit is contained in:
parent
4d2b037dbe
commit
33c9b6643f
178 changed files with 4105 additions and 3371 deletions
|
@ -9,5 +9,3 @@
|
|||
</c-card>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup></script>
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
<script lang="ts" setup>
|
||||
import { useTheme } from './c-card.theme';
|
||||
|
||||
const props = defineProps<{
|
||||
title?: string
|
||||
}>();
|
||||
|
||||
const { title } = toRefs(props);
|
||||
|
||||
const theme = useTheme();
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="c-card">
|
||||
<div v-if="title" class="c-card-title">
|
||||
|
@ -7,18 +19,6 @@
|
|||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import { useTheme } from './c-card.theme';
|
||||
|
||||
const props = defineProps<{
|
||||
title?: string;
|
||||
}>();
|
||||
|
||||
const { title } = toRefs(props);
|
||||
|
||||
const theme = useTheme();
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
.c-card {
|
||||
background-color: v-bind('theme.backgroundColor');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue