| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <template>
- <div class="width">
- <textarea class="textarea" type="text" v-model="inputText"/>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {
- inputText: '',
- }
- },
- methods: {
- getContent() {
- return this.inputText
- },
- },
- computed: {
- isOkay() {
- return true
- },
- },
- }
- </script>
- <style scoped>
- .textarea {
- width: 100%;
- min-height: 1.2em;
- resize: vertical;
- margin: auto;
-
- color: #fff;
- border: 1px solid #aaa;
- background-color: #222;
- height: 4em;
- }
- .width {
- width: 100%;
- max-width: 60em;
- }
- </style>
|