25 lines
224 B
Plaintext
25 lines
224 B
Plaintext
<template>
|
|
<div class="test">
|
|
<text>12313</text>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
}
|
|
},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.test{
|
|
background-color: aqua;
|
|
}
|
|
</style>
|