test.vue 425 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <div class="ndr-upload1">
  3. 123456
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'test',
  9. props: {
  10. },
  11. data () {
  12. return {
  13. test: 123
  14. }
  15. },
  16. created () {
  17. },
  18. mounted () {
  19. },
  20. methods: {
  21. }
  22. }
  23. </script>
  24. <!-- Add "scoped" attribute to limit CSS to this component only -->
  25. <style lang="scss" rel="stylesheet/scss">
  26. .ndr-upload1 {
  27. font-size: 20px;
  28. color: red;
  29. }
  30. </style>