perf-unocss.config配置前缀,方便后面统一修改

This commit is contained in:
Huang 2022-11-29 15:51:02 +08:00
parent 9d3962e816
commit 0c54ae6775
5 changed files with 10 additions and 8 deletions

View File

@ -1,6 +1,6 @@
<script lang="ts" setup name="AppProvider"></script> <script lang="ts" setup name="AppProvider"></script>
<template> <template>
<view class="un-p-safe un-bg-blue-500"> <view class="_u_p-safe _u_bg-blue-500">
<slot></slot> <slot></slot>
</view> </view>
</template> </template>

View File

@ -12,7 +12,7 @@
<template> <template>
<AppProvider> <AppProvider>
<view class="container"> 页面构建中... </view> <view class="container"> 页面构建中... </view>
<view class="un-center"> <view class="_u_center">
<BasicButton @click="jumpList1">List1 </BasicButton> <BasicButton @click="jumpList1">List1 </BasicButton>
</view> </view>
</AppProvider> </AppProvider>

View File

@ -29,10 +29,10 @@
<text class="">是否是Vue3: {{ isVue3 }}</text> <text class="">是否是Vue3: {{ isVue3 }}</text>
</view> </view>
<view class="text-area"> <view class="text-area">
<text class="un-text-red">当前平台: {{ platform }}</text> <text class="_u_text-red">当前平台: {{ platform }}</text>
</view> </view>
<BasicButton @click="handleGetStarted">Get Started </BasicButton> <BasicButton @click="handleGetStarted">Get Started </BasicButton>
<view class="un-text-red">uno css</view> <view class="_u_text-red">uno css</view>
<Iconify icon="i-ph-anchor-simple-thin" size="65" /> <Iconify icon="i-ph-anchor-simple-thin" size="65" />
<Iconify icon="i-system-uicons-book-text" /> <Iconify icon="i-system-uicons-book-text" />
<Iconify icon="i-system-uicons-battery-full" size="65" /> <Iconify icon="i-system-uicons-battery-full" size="65" />

View File

@ -8,7 +8,9 @@
}; };
</script> </script>
<template> <template>
<view class="un-center"> Test1 </view> <view class="_u_center"> Test1 </view>
<BasicButton @click="jumpTest2">Test2 </BasicButton> <view class="_u_center"
><BasicButton @click="jumpTest2">Test2 </BasicButton></view
>
</template> </template>
<style scoped></style> <style scoped></style>

View File

@ -26,7 +26,7 @@ const transformRules = {
',': '-r222-', ',': '-r222-',
}; };
const prefix = `un-`; const prefix = `_u_`;
export default defineConfig({ export default defineConfig({
presets: [ presets: [
@ -47,7 +47,7 @@ export default defineConfig({
shortcuts: [ shortcuts: [
{ {
'border-base': 'border border-gray-500_10', 'border-base': 'border border-gray-500_10',
'un-center': 'un-flex un-justify-center un-items-center', _u_center: '_u_flex _u_justify-center _u_items-center',
}, },
], ],
theme: {}, theme: {},