mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
Create IconContainer component
This commit is contained in:
parent
a85b7b6369
commit
6ebc2a095b
26
index.html
26
index.html
@ -3,33 +3,9 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Feather</title>
|
||||
|
||||
<style>
|
||||
body {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div id="app">
|
||||
<!-- <icon-container v-for="icon in icons" :name="icon"></icon-container> -->
|
||||
</div>
|
||||
|
||||
<!-- <script type="text/x-template" id="icon-template">
|
||||
<div class="icon"></div>
|
||||
</script>
|
||||
|
||||
<script type="text/x-template" id="icon-container-template">
|
||||
<div class="icon-container">
|
||||
<a :href="`icons/${name}.svg`" download>
|
||||
<icon :name="name" size="48"></icon>
|
||||
</a>
|
||||
</div>
|
||||
</script> -->
|
||||
|
||||
<div id="app"></div>
|
||||
<script src="bundle.js"></script>
|
||||
</body>
|
||||
</html>
|
13
src/App.vue
13
src/App.vue
@ -1,14 +1,21 @@
|
||||
<template>
|
||||
<div><icon name="square" size="48"></icon></div>
|
||||
<div>
|
||||
<icon-container v-for="icon in icons" :name="icon"></icon-container>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import {mapState} from 'vuex';
|
||||
import Icon from './Icon';
|
||||
import IconContainer from './IconContainer';
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {Icon},
|
||||
components: {IconContainer},
|
||||
computed: mapState(['icons'])
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="stylus">
|
||||
body
|
||||
margin 0
|
||||
</style>
|
22
src/IconContainer.vue
Normal file
22
src/IconContainer.vue
Normal file
@ -0,0 +1,22 @@
|
||||
<template>
|
||||
<div class="icon-container">
|
||||
<a :href="`icons/${name}.svg`" download>
|
||||
<icon :name="name" size="48"></icon>
|
||||
</a>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Icon from './Icon';
|
||||
|
||||
export default {
|
||||
name: 'IconContainer',
|
||||
components: {Icon},
|
||||
props: {
|
||||
name: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
48
src/main.js
48
src/main.js
@ -23,51 +23,3 @@ new Vue({
|
||||
components: {App},
|
||||
template: '<app/>'
|
||||
});
|
||||
|
||||
// Vue.component('icon', {
|
||||
// props: {
|
||||
// name: {
|
||||
// type: String,
|
||||
// required: true
|
||||
// },
|
||||
// size: {
|
||||
// type: String,
|
||||
// default: '24'
|
||||
// }
|
||||
// },
|
||||
// template: '#icon-template',
|
||||
// mounted() {
|
||||
// fetch(`./icons/${this.name}.svg`)
|
||||
// .then(response => {
|
||||
// if (response.ok) {
|
||||
// return response.text();
|
||||
// }
|
||||
// throw new Error(`Cannot find ${this.name}.svg`);
|
||||
// })
|
||||
// .then(svgText => {
|
||||
// const svgDocument = new DOMParser().parseFromString(svgText, 'image/svg+xml');
|
||||
// const svgIcon = svgDocument.querySelector('svg').cloneNode(true);
|
||||
|
||||
// svgIcon.setAttribute('width', this.size);
|
||||
// svgIcon.setAttribute('height', this.size);
|
||||
|
||||
// this.$el.appendChild(svgIcon);
|
||||
// })
|
||||
// .catch(error => {
|
||||
// console.error(error);
|
||||
// });
|
||||
// }
|
||||
// });
|
||||
|
||||
// Vue.component('icon-container', {
|
||||
// props: {
|
||||
// name: {
|
||||
// type: String,
|
||||
// required: true
|
||||
// }
|
||||
// },
|
||||
// template: '#icon-container-template'
|
||||
// })
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user