Blame view

examples/routers/color-picker.vue 240 Bytes
c6faec44   梁灏   init ColorPicker
1
  <template>
ae02246a   梁灏   fixed #4718
2
      <ColorPicker v-model="color1" transfer />
c6faec44   梁灏   init ColorPicker
3
  </template>
c6faec44   梁灏   init ColorPicker
4
  <script>
0fdbb26b   梁灏   ColorPicker add e...
5
6
7
8
9
      export default {
          data () {
              return {
                  color1: '#19be6b',
                  color2: ''
ae02246a   梁灏   fixed #4718
10
              }
0fdbb26b   梁灏   ColorPicker add e...
11
          }
ae02246a   梁灏   fixed #4718
12
      }
263c991e   Sergio Crisostomo   Add open change e...
13
  </script>