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.
fx-uniapp/App.vue

30 lines
341 B

2 years ago
<script>
import {
init
} from "@/shopro";
export default {
2 years ago
data(){
return{
}
},
2 years ago
onLaunch(options) {
init(options);
}
};
</script>
<style lang="scss">
@import 'static/style/index.scss';
2 years ago
page{
background-color: #21222B;
}
.hometitle{
font-size: 34upx;
color: #FFFFFF;
margin-left:25upx;
}
2 years ago
</style>