mirror of
https://github.com/feathericons/feather.git
synced 2023-08-10 21:13:24 +03:00
Move script to main.js
This commit is contained in:
parent
7ce70f6c62
commit
4bb2702015
61
index.html
61
index.html
@ -39,65 +39,6 @@
|
||||
</div>
|
||||
</script>
|
||||
|
||||
<script>
|
||||
const data = {
|
||||
icons: [
|
||||
'square',
|
||||
'circle',
|
||||
'rectangle-vertical',
|
||||
'rectangle-horizontal'
|
||||
]
|
||||
};
|
||||
|
||||
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'
|
||||
})
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
data: data
|
||||
});
|
||||
</script>
|
||||
<script src="src/main.js"></script>
|
||||
</body>
|
||||
</html>
|
58
src/main.js
Normal file
58
src/main.js
Normal file
@ -0,0 +1,58 @@
|
||||
const data = {
|
||||
icons: [
|
||||
'square',
|
||||
'circle',
|
||||
'rectangle-vertical',
|
||||
'rectangle-horizontal'
|
||||
]
|
||||
};
|
||||
|
||||
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'
|
||||
})
|
||||
|
||||
new Vue({
|
||||
el: '#app',
|
||||
data: data
|
||||
});
|
Loading…
Reference in New Issue
Block a user