24 lines
240 B
Vue
24 lines
240 B
Vue
<template>
|
|
<view class="test">
|
|
<uni-test></uni-test>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.test {
|
|
color: #0062CC;
|
|
}
|
|
</style> |