You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
304 B
20 lines
304 B
<template>
|
|
<div>
|
|
sada{{ color }}
|
|
<ps-button color="red" aaa="red"></ps-button>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import PsButton from "@princess-ui/components/button"
|
|
|
|
const props = defineProps<{
|
|
color: 'aaa'
|
|
}>()
|
|
</script>
|
|
|
|
<style>
|
|
div{
|
|
color: green
|
|
}
|
|
</style>
|