Merge remote changes

This commit is contained in:
chorblack
2025-04-22 20:51:53 +08:00
parent c889452e29
commit 0ffce4efe1
12 changed files with 550 additions and 0 deletions

BIN
pages/.DS_Store vendored Normal file

Binary file not shown.

462
pages/Demo/index.ux Normal file

File diff suppressed because one or more lines are too long

27
pages/DemoDetail/index.ux Normal file
View File

@@ -0,0 +1,27 @@
<template>
<div class="wrapper">
<text class="title">{{ text }}</text>
</div>
</template>
<script>
export default {
data: {
text: '你好,世界'
}
}
</script>
<style lang="scss">
@import './../../assets/styles/style.scss';
.wrapper {
@include flex-box-mixins(column, center, center);
margin: 0 10 * $size-factor;
.title {
font-size: 8 * $size-factor;
text-align: center;
color: $black;
}
}
</style>