| 123456789101112131415161718192021222324252627282930313233343536 |
- <template>
- <div class="ndr-upload1">
- 123456
- </div>
- </template>
- <script>
- export default {
- name: 'test',
- props: {
- },
- data () {
- return {
- test: 123
- }
- },
- created () {
- },
- mounted () {
- },
- methods: {
- }
- }
- </script>
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" rel="stylesheet/scss">
- .ndr-upload1 {
- font-size: 20px;
- color: red;
- }
- </style>
|