vue-pancake-icons 0.3.2 → 0.3.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Binary file
package/public/index.html DELETED
@@ -1,17 +0,0 @@
1
- <!DOCTYPE html>
2
- <html lang="">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
- <link rel="icon" href="<%= BASE_URL %>favicon.ico">
8
- <title><%= htmlWebpackPlugin.options.title %></title>
9
- </head>
10
- <body>
11
- <noscript>
12
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
13
- </noscript>
14
- <div id="app"></div>
15
- <!-- built files will be auto injected -->
16
- </body>
17
- </html>
package/src/App.vue DELETED
@@ -1,26 +0,0 @@
1
- <template>
2
- <img alt="Vue logo" src="./assets/logo.png">
3
- <HelloWorld msg="Welcome to Your Vue.js App"/>
4
- </template>
5
-
6
- <script>
7
- import HelloWorld from './components/HelloWorld.vue'
8
-
9
- export default {
10
- name: 'App',
11
- components: {
12
- HelloWorld
13
- }
14
- }
15
- </script>
16
-
17
- <style>
18
- #app {
19
- font-family: Avenir, Helvetica, Arial, sans-serif;
20
- -webkit-font-smoothing: antialiased;
21
- -moz-osx-font-smoothing: grayscale;
22
- text-align: center;
23
- color: #2c3e50;
24
- margin-top: 60px;
25
- }
26
- </style>
Binary file
@@ -1,11 +0,0 @@
1
- <template>
2
- <div>
3
- DMM HELLO
4
- </div>
5
- </template>
6
-
7
- <script>
8
- export default {
9
- name: 'HelloWorld'
10
- }
11
- </script>
@@ -1,5 +0,0 @@
1
- import HelloWorld from "./HelloWorld.vue"
2
-
3
- module.exports = {
4
- HelloWorld
5
- }
package/src/install.js DELETED
@@ -1,19 +0,0 @@
1
- import * as components from "./components";
2
- import HelloWorld from "./components/HelloWorld.vue"
3
-
4
- const VuePancakeIcons = {
5
- install(Vue) {
6
- for (const prop in components) {
7
- const component = components[prop]
8
- Vue.component(component.name, component)
9
- }
10
- Vue.component('hello-world', HelloWorld)
11
- }
12
- };
13
-
14
- // Automatic installation if Vue has been added to the global scope.
15
- if (typeof window !== 'undefined' && window.Vue) {
16
- window.Vue.use(VuePancakeIcons);
17
- }
18
-
19
- export default VuePancakeIcons
package/src/main.js DELETED
@@ -1,4 +0,0 @@
1
- import { createApp } from 'vue'
2
- import App from './App.vue'
3
-
4
- createApp(App).mount('#app')
package/vue.config.js DELETED
@@ -1,4 +0,0 @@
1
- const { defineConfig } = require('@vue/cli-service')
2
- module.exports = defineConfig({
3
- transpileDependencies: true
4
- })